blob: 8a09bdf48b994cdf072127bf4c52e235706aa089 [file] [log] [blame]
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001/*
2 * Copyright (C) 2006 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
Wink Saville7f856802009-06-09 10:23:37 -070017#ifndef ANDROID_RIL_H
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080018#define ANDROID_RIL_H 1
19
20#include <stdlib.h>
Wink Saville8a9e0212013-04-09 12:11:38 -070021#include <stdint.h>
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -070022#include <telephony/ril_cdma_sms.h>
Wink Savillef4c4d362009-04-02 01:37:03 -070023#ifndef FEATURE_UNIT_TEST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080024#include <sys/time.h>
Wink Savillef4c4d362009-04-02 01:37:03 -070025#endif /* !FEATURE_UNIT_TEST */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080026
27#ifdef __cplusplus
28extern "C" {
29#endif
30
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -070031#define RIL_VERSION 9 /* Current version */
Alex Yakavenka45e740e2012-01-31 11:48:27 -080032#define RIL_VERSION_MIN 6 /* Minimum RIL_VERSION supported */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080033
Wink Savillea592eeb2009-05-22 13:26:36 -070034#define CDMA_ALPHA_INFO_BUFFER_LENGTH 64
35#define CDMA_NUMBER_INFO_BUFFER_LENGTH 81
36
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080037typedef void * RIL_Token;
38
39typedef enum {
40 RIL_E_SUCCESS = 0,
41 RIL_E_RADIO_NOT_AVAILABLE = 1, /* If radio did not start or is resetting */
42 RIL_E_GENERIC_FAILURE = 2,
43 RIL_E_PASSWORD_INCORRECT = 3, /* for PIN/PIN2 methods only! */
44 RIL_E_SIM_PIN2 = 4, /* Operation requires SIM PIN2 to be entered */
45 RIL_E_SIM_PUK2 = 5, /* Operation requires SIM PIN2 to be entered */
46 RIL_E_REQUEST_NOT_SUPPORTED = 6,
47 RIL_E_CANCELLED = 7,
48 RIL_E_OP_NOT_ALLOWED_DURING_VOICE_CALL = 8, /* data ops are not allowed during voice
49 call on a Class C GPRS device */
50 RIL_E_OP_NOT_ALLOWED_BEFORE_REG_TO_NW = 9, /* data ops are not allowed before device
51 registers in network */
Wink Saville3d54e742009-05-18 18:00:44 -070052 RIL_E_SMS_SEND_FAIL_RETRY = 10, /* fail to send sms and need retry */
53 RIL_E_SIM_ABSENT = 11, /* fail to set the location where CDMA subscription
54 shall be retrieved because of SIM or RUIM
Wink Savillef4c4d362009-04-02 01:37:03 -070055 card absent */
Wink Saville3d54e742009-05-18 18:00:44 -070056 RIL_E_SUBSCRIPTION_NOT_AVAILABLE = 12, /* fail to find CDMA subscription from specified
Wink Savillef4c4d362009-04-02 01:37:03 -070057 location */
jsh602f80f2009-07-10 15:44:37 -070058 RIL_E_MODE_NOT_SUPPORTED = 13, /* HW does not support preferred network type */
John Wang75534472010-04-20 15:11:42 -070059 RIL_E_FDN_CHECK_FAILURE = 14, /* command failed because recipient is not on FDN list */
60 RIL_E_ILLEGAL_SIM_OR_ME = 15 /* network selection failed due to
61 illegal SIM or ME */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080062} RIL_Errno;
63
64typedef enum {
65 RIL_CALL_ACTIVE = 0,
66 RIL_CALL_HOLDING = 1,
67 RIL_CALL_DIALING = 2, /* MO call only */
68 RIL_CALL_ALERTING = 3, /* MO call only */
69 RIL_CALL_INCOMING = 4, /* MT call only */
70 RIL_CALL_WAITING = 5 /* MT call only */
71} RIL_CallState;
72
73typedef enum {
Wink Savillef4c4d362009-04-02 01:37:03 -070074 RADIO_STATE_OFF = 0, /* Radio explictly powered off (eg CFUN=0) */
75 RADIO_STATE_UNAVAILABLE = 1, /* Radio unavailable (eg, resetting or not booted) */
Naveen Kalla2bc78d62011-12-07 16:22:53 -080076 /* States 2-9 below are deprecated. Just leaving them here for backward compatibility. */
Wink Savillef4c4d362009-04-02 01:37:03 -070077 RADIO_STATE_SIM_NOT_READY = 2, /* Radio is on, but the SIM interface is not ready */
Wink Saville7f856802009-06-09 10:23:37 -070078 RADIO_STATE_SIM_LOCKED_OR_ABSENT = 3, /* SIM PIN locked, PUK required, network
Wink Savillef4c4d362009-04-02 01:37:03 -070079 personalization locked, or SIM absent */
80 RADIO_STATE_SIM_READY = 4, /* Radio is on and SIM interface is available */
81 RADIO_STATE_RUIM_NOT_READY = 5, /* Radio is on, but the RUIM interface is not ready */
82 RADIO_STATE_RUIM_READY = 6, /* Radio is on and the RUIM interface is available */
Wink Saville7f856802009-06-09 10:23:37 -070083 RADIO_STATE_RUIM_LOCKED_OR_ABSENT = 7, /* RUIM PIN locked, PUK required, network
Wink Savillef4c4d362009-04-02 01:37:03 -070084 personalization locked, or RUIM absent */
85 RADIO_STATE_NV_NOT_READY = 8, /* Radio is on, but the NV interface is not available */
Naveen Kalla2bc78d62011-12-07 16:22:53 -080086 RADIO_STATE_NV_READY = 9, /* Radio is on and the NV interface is available */
87 RADIO_STATE_ON = 10 /* Radio is on */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080088} RIL_RadioState;
89
Wink Saville43808972011-01-13 17:39:51 -080090typedef enum {
91 RADIO_TECH_UNKNOWN = 0,
92 RADIO_TECH_GPRS = 1,
93 RADIO_TECH_EDGE = 2,
94 RADIO_TECH_UMTS = 3,
95 RADIO_TECH_IS95A = 4,
96 RADIO_TECH_IS95B = 5,
97 RADIO_TECH_1xRTT = 6,
98 RADIO_TECH_EVDO_0 = 7,
99 RADIO_TECH_EVDO_A = 8,
100 RADIO_TECH_HSDPA = 9,
101 RADIO_TECH_HSUPA = 10,
102 RADIO_TECH_HSPA = 11,
103 RADIO_TECH_EVDO_B = 12,
104 RADIO_TECH_EHRPD = 13,
Glenn Kastenc9419612011-02-02 17:44:18 -0800105 RADIO_TECH_LTE = 14,
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800106 RADIO_TECH_HSPAP = 15, // HSPA+
107 RADIO_TECH_GSM = 16 // Only supports voice
Wink Saville43808972011-01-13 17:39:51 -0800108} RIL_RadioTechnology;
109
Wink Savillec0114b32011-02-18 10:14:07 -0800110// Do we want to split Data from Voice and the use
111// RIL_RadioTechnology for get/setPreferredVoice/Data ?
112typedef enum {
113 PREF_NET_TYPE_GSM_WCDMA = 0, /* GSM/WCDMA (WCDMA preferred) */
114 PREF_NET_TYPE_GSM_ONLY = 1, /* GSM only */
115 PREF_NET_TYPE_WCDMA = 2, /* WCDMA */
116 PREF_NET_TYPE_GSM_WCDMA_AUTO = 3, /* GSM/WCDMA (auto mode, according to PRL) */
117 PREF_NET_TYPE_CDMA_EVDO_AUTO = 4, /* CDMA and EvDo (auto mode, according to PRL) */
118 PREF_NET_TYPE_CDMA_ONLY = 5, /* CDMA only */
119 PREF_NET_TYPE_EVDO_ONLY = 6, /* EvDo only */
120 PREF_NET_TYPE_GSM_WCDMA_CDMA_EVDO_AUTO = 7, /* GSM/WCDMA, CDMA, and EvDo (auto mode, according to PRL) */
121 PREF_NET_TYPE_LTE_CDMA_EVDO = 8, /* LTE, CDMA and EvDo */
122 PREF_NET_TYPE_LTE_GSM_WCDMA = 9, /* LTE, GSM/WCDMA */
123 PREF_NET_TYPE_LTE_CMDA_EVDO_GSM_WCDMA = 10, /* LTE, CDMA, EvDo, GSM/WCDMA */
Uma Maheswari Ramalingam0e094872011-09-28 13:25:48 -0700124 PREF_NET_TYPE_LTE_ONLY = 11, /* LTE only */
125 PREF_NET_TYPE_LTE_WCDMA = 12 /* LTE/WCDMA */
Wink Savillec0114b32011-02-18 10:14:07 -0800126} RIL_PreferredNetworkType;
127
128/* Source for cdma subscription */
129typedef enum {
130 CDMA_SUBSCRIPTION_SOURCE_RUIM_SIM = 0,
131 CDMA_SUBSCRIPTION_SOURCE_NV = 1
132} RIL_CdmaSubscriptionSource;
133
Wink Saville74fa3882009-12-22 15:35:41 -0800134/* User-to-User signaling Info activation types derived from 3GPP 23.087 v8.0 */
135typedef enum {
136 RIL_UUS_TYPE1_IMPLICIT = 0,
137 RIL_UUS_TYPE1_REQUIRED = 1,
138 RIL_UUS_TYPE1_NOT_REQUIRED = 2,
139 RIL_UUS_TYPE2_REQUIRED = 3,
140 RIL_UUS_TYPE2_NOT_REQUIRED = 4,
141 RIL_UUS_TYPE3_REQUIRED = 5,
142 RIL_UUS_TYPE3_NOT_REQUIRED = 6
143} RIL_UUS_Type;
144
145/* User-to-User Signaling Information data coding schemes. Possible values for
146 * Octet 3 (Protocol Discriminator field) in the UUIE. The values have been
147 * specified in section 10.5.4.25 of 3GPP TS 24.008 */
148typedef enum {
149 RIL_UUS_DCS_USP = 0, /* User specified protocol */
150 RIL_UUS_DCS_OSIHLP = 1, /* OSI higher layer protocol */
151 RIL_UUS_DCS_X244 = 2, /* X.244 */
152 RIL_UUS_DCS_RMCF = 3, /* Reserved for system mangement
153 convergence function */
154 RIL_UUS_DCS_IA5c = 4 /* IA5 characters */
155} RIL_UUS_DCS;
156
157/* User-to-User Signaling Information defined in 3GPP 23.087 v8.0
158 * This data is passed in RIL_ExtensionRecord and rec contains this
159 * structure when type is RIL_UUS_INFO_EXT_REC */
160typedef struct {
161 RIL_UUS_Type uusType; /* UUS Type */
162 RIL_UUS_DCS uusDcs; /* UUS Data Coding Scheme */
163 int uusLength; /* Length of UUS Data */
164 char * uusData; /* UUS Data */
165} RIL_UUS_Info;
166
167/* CDMA Signal Information Record as defined in C.S0005 section 3.7.5.5 */
Wink Saville1b5fd232009-04-22 14:50:00 -0700168typedef struct {
169 char isPresent; /* non-zero if signal information record is present */
170 char signalType; /* as defined 3.7.5.5-1 */
171 char alertPitch; /* as defined 3.7.5.5-2 */
172 char signal; /* as defined 3.7.5.5-3, 3.7.5.5-4 or 3.7.5.5-5 */
173} RIL_CDMA_SignalInfoRecord;
174
Wink Saville1b5fd232009-04-22 14:50:00 -0700175typedef struct {
176 RIL_CallState state;
177 int index; /* Connection Index for use with, eg, AT+CHLD */
178 int toa; /* type of address, eg 145 = intl */
179 char isMpty; /* nonzero if is mpty call */
180 char isMT; /* nonzero if call is mobile terminated */
181 char als; /* ALS line indicator if available
182 (0 = line 1) */
183 char isVoice; /* nonzero if this is is a voice call */
184 char isVoicePrivacy; /* nonzero if CDMA voice privacy mode is active */
185 char * number; /* Remote party number */
186 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
187 char * name; /* Remote party name */
188 int namePresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
Wink Saville74fa3882009-12-22 15:35:41 -0800189 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800190} RIL_Call;
191
Wink Savillec0114b32011-02-18 10:14:07 -0800192/* Deprecated, use RIL_Data_Call_Response_v6 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800193typedef struct {
Wink Saville43808972011-01-13 17:39:51 -0800194 int cid; /* Context ID, uniquely identifies this call */
Wink Saville1b5fd232009-04-22 14:50:00 -0700195 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -0700196 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
197 For example, "IP", "IPV6", "IPV4V6", or "PPP". */
Wink Saville43808972011-01-13 17:39:51 -0800198 char * apn; /* ignored */
Wink Savillec0114b32011-02-18 10:14:07 -0800199 char * address; /* An address, e.g., "192.0.1.3" or "2001:db8::1". */
200} RIL_Data_Call_Response_v4;
Wink Saville43808972011-01-13 17:39:51 -0800201
202/*
203 * Returned by RIL_REQUEST_SETUP_DATA_CALL, RIL_REQUEST_DATA_CALL_LIST
204 * and RIL_UNSOL_DATA_CALL_LIST_CHANGED, on error status != 0.
205 */
206typedef struct {
207 int status; /* A RIL_DataCallFailCause, 0 which is PDP_FAIL_NONE if no error */
Kazuhiro Ondobeb25b52011-06-17 16:26:45 -0500208 int suggestedRetryTime; /* If status != 0, this fields indicates the suggested retry
209 back-off timer value RIL wants to override the one
210 pre-configured in FW.
211 The unit is miliseconds.
212 The value < 0 means no value is suggested.
Kazuhiro Ondo16157582011-07-24 07:56:32 -0700213 The value 0 means retry should be done ASAP.
Wink Saville8a9e0212013-04-09 12:11:38 -0700214 The value of INT_MAX(0x7fffffff) means no retry. */
Wink Saville43808972011-01-13 17:39:51 -0800215 int cid; /* Context ID, uniquely identifies this call */
216 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
217 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
218 For example, "IP", "IPV6", "IPV4V6", or "PPP". If status is
219 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED this is the type supported
220 such as "IP" or "IPV6" */
221 char * ifname; /* The network interface name */
Wink Savillec0114b32011-02-18 10:14:07 -0800222 char * addresses; /* A space-delimited list of addresses with optional "/" prefix length,
223 e.g., "192.0.1.3" or "192.0.1.11/16 2001:db8::1/64".
Wink Saville43808972011-01-13 17:39:51 -0800224 May not be empty, typically 1 IPv4 or 1 IPv6 or
Wink Savillec0114b32011-02-18 10:14:07 -0800225 one of each. If the prefix length is absent the addresses
226 are assumed to be point to point with IPv4 having a prefix
227 length of 32 and IPv6 128. */
Wink Saville43808972011-01-13 17:39:51 -0800228 char * dnses; /* A space-delimited list of DNS server addresses,
229 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
230 May be empty. */
Wink Savillec0114b32011-02-18 10:14:07 -0800231 char * gateways; /* A space-delimited list of default gateway addresses,
232 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
233 May be empty in which case the addresses represent point
234 to point connections. */
235} RIL_Data_Call_Response_v6;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800236
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -0700237typedef enum {
238 RADIO_TECH_3GPP = 1, /* 3GPP Technologies - GSM, WCDMA */
239 RADIO_TECH_3GPP2 = 2 /* 3GPP2 Technologies - CDMA */
240} RIL_RadioTechnologyFamily;
241
242typedef struct {
243 RIL_RadioTechnologyFamily tech;
244 unsigned char retry; /* 0 == not retry, nonzero == retry */
245 int messageRef; /* Valid field if retry is set to nonzero.
246 Contains messageRef from RIL_SMS_Response
247 corresponding to failed MO SMS.
248 */
249
250 union {
251 /* Valid field if tech is RADIO_TECH_3GPP2. See RIL_REQUEST_CDMA_SEND_SMS */
252 RIL_CDMA_SMS_Message* cdmaMessage;
253
254 /* Valid field if tech is RADIO_TECH_3GPP. See RIL_REQUEST_SEND_SMS */
255 char** gsmMessage;
256 } message;
257} RIL_IMS_SMS_Message;
258
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800259typedef struct {
Tammo Spalink8e3a2ca2009-09-11 11:26:30 +0800260 int messageRef; /* TP-Message-Reference for GSM,
261 and BearerData MessageId for CDMA
262 (See 3GPP2 C.S0015-B, v2.0, table 4.5-1). */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800263 char *ackPDU; /* or NULL if n/a */
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -0700264 int errorCode; /* See 3GPP 27.005, 3.2.5 for GSM/UMTS,
265 3GPP2 N.S0005 (IS-41C) Table 171 for CDMA,
266 -1 if unknown or not applicable*/
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800267} RIL_SMS_Response;
268
269/** Used by RIL_REQUEST_WRITE_SMS_TO_SIM */
270typedef struct {
271 int status; /* Status of message. See TS 27.005 3.1, "<stat>": */
272 /* 0 = "REC UNREAD" */
273 /* 1 = "REC READ" */
274 /* 2 = "STO UNSENT" */
275 /* 3 = "STO SENT" */
johnwangf8bc1672009-05-14 19:19:47 -0700276 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address,
277 the TP-layer length is "strlen(pdu)/2". */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800278 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte
279 (as expected by TS 27.005) or NULL for default SMSC */
280} RIL_SMS_WriteArgs;
281
282/** Used by RIL_REQUEST_DIAL */
283typedef struct {
284 char * address;
285 int clir;
286 /* (same as 'n' paremeter in TS 27.007 7.7 "+CLIR"
287 * clir == 0 on "use subscription default value"
288 * clir == 1 on "CLIR invocation" (restrict CLI presentation)
289 * clir == 2 on "CLIR suppression" (allow CLI presentation)
290 */
Wink Saville74fa3882009-12-22 15:35:41 -0800291 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800292} RIL_Dial;
293
294typedef struct {
295 int command; /* one of the commands listed for TS 27.007 +CRSM*/
296 int fileid; /* EF id */
297 char *path; /* "pathid" from TS 27.007 +CRSM command.
298 Path is in hex asciii format eg "7f205f70"
Wink Saville1b5fd232009-04-22 14:50:00 -0700299 Path must always be provided.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800300 */
301 int p1;
302 int p2;
303 int p3;
304 char *data; /* May be NULL*/
305 char *pin2; /* May be NULL*/
Wink Savillec0114b32011-02-18 10:14:07 -0800306} RIL_SIM_IO_v5;
307
308typedef struct {
309 int command; /* one of the commands listed for TS 27.007 +CRSM*/
310 int fileid; /* EF id */
311 char *path; /* "pathid" from TS 27.007 +CRSM command.
312 Path is in hex asciii format eg "7f205f70"
313 Path must always be provided.
314 */
315 int p1;
316 int p2;
317 int p3;
318 char *data; /* May be NULL*/
319 char *pin2; /* May be NULL*/
320 char *aidPtr; /* AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value. */
321} RIL_SIM_IO_v6;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800322
323typedef struct {
324 int sw1;
325 int sw2;
326 char *simResponse; /* In hex string format ([a-fA-F0-9]*). */
327} RIL_SIM_IO_Response;
328
329/* See also com.android.internal.telephony.gsm.CallForwardInfo */
330
331typedef struct {
332 int status; /*
333 * For RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
334 * status 1 = active, 0 = not active
335 *
336 * For RIL_REQUEST_SET_CALL_FORWARD:
337 * status is:
338 * 0 = disable
339 * 1 = enable
340 * 2 = interrogate
341 * 3 = registeration
342 * 4 = erasure
343 */
344
Wink Saville3d54e742009-05-18 18:00:44 -0700345 int reason; /* from TS 27.007 7.11 "reason" */
346 int serviceClass;/* From 27.007 +CCFC/+CLCK "class"
347 See table for Android mapping from
348 MMI service code
349 0 means user doesn't input class */
350 int toa; /* "type" from TS 27.007 7.11 */
351 char * number; /* "number" from TS 27.007 7.11. May be NULL */
352 int timeSeconds; /* for CF no reply only */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800353}RIL_CallForwardInfo;
354
355typedef struct {
johnwange0ba6a92009-09-11 19:14:52 -0700356 char * cid; /* Combination of LAC and Cell Id in 32 bits in GSM.
357 * Upper 16 bits is LAC and lower 16 bits
358 * is CID (as described in TS 27.005)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800359 * Primary Scrambling Code (as described in TS 25.331)
Wink Saville7f856802009-06-09 10:23:37 -0700360 * in 9 bits in UMTS
johnwange0ba6a92009-09-11 19:14:52 -0700361 * Valid values are hexadecimal 0x0000 - 0xffffffff.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800362 */
johnwange0ba6a92009-09-11 19:14:52 -0700363 int rssi; /* Received RSSI in GSM,
364 * Level index of CPICH Received Signal Code Power in UMTS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800365 */
366} RIL_NeighboringCell;
367
368/* See RIL_REQUEST_LAST_CALL_FAIL_CAUSE */
369typedef enum {
Naveen Kalla1b3a6fe2010-04-21 16:44:37 -0700370 CALL_FAIL_UNOBTAINABLE_NUMBER = 1,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800371 CALL_FAIL_NORMAL = 16,
372 CALL_FAIL_BUSY = 17,
373 CALL_FAIL_CONGESTION = 34,
374 CALL_FAIL_ACM_LIMIT_EXCEEDED = 68,
375 CALL_FAIL_CALL_BARRED = 240,
376 CALL_FAIL_FDN_BLOCKED = 241,
jsh602f80f2009-07-10 15:44:37 -0700377 CALL_FAIL_IMSI_UNKNOWN_IN_VLR = 242,
378 CALL_FAIL_IMEI_NOT_ACCEPTED = 243,
Wink Saville1b5fd232009-04-22 14:50:00 -0700379 CALL_FAIL_CDMA_LOCKED_UNTIL_POWER_CYCLE = 1000,
380 CALL_FAIL_CDMA_DROP = 1001,
381 CALL_FAIL_CDMA_INTERCEPT = 1002,
382 CALL_FAIL_CDMA_REORDER = 1003,
383 CALL_FAIL_CDMA_SO_REJECT = 1004,
384 CALL_FAIL_CDMA_RETRY_ORDER = 1005,
385 CALL_FAIL_CDMA_ACCESS_FAILURE = 1006,
386 CALL_FAIL_CDMA_PREEMPTED = 1007,
387 CALL_FAIL_CDMA_NOT_EMERGENCY = 1008, /* For non-emergency number dialed
388 during emergency callback mode */
Naveen Kalla03c1edf2009-09-23 11:18:35 -0700389 CALL_FAIL_CDMA_ACCESS_BLOCKED = 1009, /* CDMA network access probes blocked */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800390 CALL_FAIL_ERROR_UNSPECIFIED = 0xffff
391} RIL_LastCallFailCause;
392
Wink Savillef4c4d362009-04-02 01:37:03 -0700393/* See RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800394typedef enum {
Wink Saville43808972011-01-13 17:39:51 -0800395 PDP_FAIL_NONE = 0, /* No error, connection ok */
396
397 /* an integer cause code defined in TS 24.008
398 section 6.1.3.1.3 or TS 24.301 Release 8+ Annex B.
399 If the implementation does not have access to the exact cause codes,
400 then it should return one of the following values,
401 as the UI layer needs to distinguish these
402 cases for error notification and potential retries. */
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700403 PDP_FAIL_OPERATOR_BARRED = 0x08, /* no retry */
404 PDP_FAIL_INSUFFICIENT_RESOURCES = 0x1A,
405 PDP_FAIL_MISSING_UKNOWN_APN = 0x1B, /* no retry */
406 PDP_FAIL_UNKNOWN_PDP_ADDRESS_TYPE = 0x1C, /* no retry */
407 PDP_FAIL_USER_AUTHENTICATION = 0x1D, /* no retry */
408 PDP_FAIL_ACTIVATION_REJECT_GGSN = 0x1E, /* no retry */
409 PDP_FAIL_ACTIVATION_REJECT_UNSPECIFIED = 0x1F,
410 PDP_FAIL_SERVICE_OPTION_NOT_SUPPORTED = 0x20, /* no retry */
411 PDP_FAIL_SERVICE_OPTION_NOT_SUBSCRIBED = 0x21, /* no retry */
412 PDP_FAIL_SERVICE_OPTION_OUT_OF_ORDER = 0x22,
Wink Saville43808972011-01-13 17:39:51 -0800413 PDP_FAIL_NSAPI_IN_USE = 0x23, /* no retry */
Wink Saville3d14a712013-08-05 14:44:01 -0700414 PDP_FAIL_REGULAR_DEACTIVATION = 0x24, /* restart radio */
Wink Saville43808972011-01-13 17:39:51 -0800415 PDP_FAIL_ONLY_IPV4_ALLOWED = 0x32, /* no retry */
416 PDP_FAIL_ONLY_IPV6_ALLOWED = 0x33, /* no retry */
417 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED = 0x34,
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700418 PDP_FAIL_PROTOCOL_ERRORS = 0x6F, /* no retry */
Wink Saville43808972011-01-13 17:39:51 -0800419
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700420 /* Not mentioned in the specification */
Wink Savillec0114b32011-02-18 10:14:07 -0800421 PDP_FAIL_VOICE_REGISTRATION_FAIL = -1,
422 PDP_FAIL_DATA_REGISTRATION_FAIL = -2,
Wink Saville43808972011-01-13 17:39:51 -0800423
424 /* reasons for data call drop - network/modem disconnect */
Wink Saville3492c6e2013-10-03 13:53:27 -0700425 PDP_FAIL_SIGNAL_LOST = -3,
Wink Saville43808972011-01-13 17:39:51 -0800426 PDP_FAIL_PREF_RADIO_TECH_CHANGED = -4,/* preferred technology has changed, should retry
427 with parameters appropriate for new technology */
428 PDP_FAIL_RADIO_POWER_OFF = -5, /* data call was disconnected because radio was resetting,
429 powered off - no retry */
430 PDP_FAIL_TETHERED_CALL_ACTIVE = -6, /* data call was disconnected by modem because tethered
431 mode was up on same APN/data profile - no retry until
432 tethered call is off */
433
434 PDP_FAIL_ERROR_UNSPECIFIED = 0xffff, /* retry silently */
435} RIL_DataCallFailCause;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800436
jsh602f80f2009-07-10 15:44:37 -0700437/* See RIL_REQUEST_SETUP_DATA_CALL */
438typedef enum {
439 RIL_DATA_PROFILE_DEFAULT = 0,
440 RIL_DATA_PROFILE_TETHERED = 1,
441 RIL_DATA_PROFILE_OEM_BASE = 1000 /* Start of OEM-specific profiles */
442} RIL_DataProfile;
443
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800444/* Used by RIL_UNSOL_SUPP_SVC_NOTIFICATION */
445typedef struct {
446 int notificationType; /*
447 * 0 = MO intermediate result code
448 * 1 = MT unsolicited result code
449 */
450 int code; /* See 27.007 7.17
451 "code1" for MO
452 "code2" for MT. */
453 int index; /* CUG index. See 27.007 7.17. */
454 int type; /* "type" from 27.007 7.17 (MT only). */
455 char * number; /* "number" from 27.007 7.17
456 (MT only, may be NULL). */
457} RIL_SuppSvcNotification;
458
Wink Savillef4c4d362009-04-02 01:37:03 -0700459#define RIL_CARD_MAX_APPS 8
460
461typedef enum {
462 RIL_CARDSTATE_ABSENT = 0,
463 RIL_CARDSTATE_PRESENT = 1,
464 RIL_CARDSTATE_ERROR = 2
465} RIL_CardState;
466
467typedef enum {
468 RIL_PERSOSUBSTATE_UNKNOWN = 0, /* initial state */
469 RIL_PERSOSUBSTATE_IN_PROGRESS = 1, /* in between each lock transition */
Wink Saville7f856802009-06-09 10:23:37 -0700470 RIL_PERSOSUBSTATE_READY = 2, /* when either SIM or RUIM Perso is finished
471 since each app can only have 1 active perso
Wink Savillef4c4d362009-04-02 01:37:03 -0700472 involved */
473 RIL_PERSOSUBSTATE_SIM_NETWORK = 3,
474 RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET = 4,
475 RIL_PERSOSUBSTATE_SIM_CORPORATE = 5,
476 RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER = 6,
477 RIL_PERSOSUBSTATE_SIM_SIM = 7,
478 RIL_PERSOSUBSTATE_SIM_NETWORK_PUK = 8, /* The corresponding perso lock is blocked */
479 RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK = 9,
480 RIL_PERSOSUBSTATE_SIM_CORPORATE_PUK = 10,
481 RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK = 11,
482 RIL_PERSOSUBSTATE_SIM_SIM_PUK = 12,
483 RIL_PERSOSUBSTATE_RUIM_NETWORK1 = 13,
484 RIL_PERSOSUBSTATE_RUIM_NETWORK2 = 14,
485 RIL_PERSOSUBSTATE_RUIM_HRPD = 15,
486 RIL_PERSOSUBSTATE_RUIM_CORPORATE = 16,
487 RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER = 17,
488 RIL_PERSOSUBSTATE_RUIM_RUIM = 18,
489 RIL_PERSOSUBSTATE_RUIM_NETWORK1_PUK = 19, /* The corresponding perso lock is blocked */
490 RIL_PERSOSUBSTATE_RUIM_NETWORK2_PUK = 20,
491 RIL_PERSOSUBSTATE_RUIM_HRPD_PUK = 21,
492 RIL_PERSOSUBSTATE_RUIM_CORPORATE_PUK = 22,
493 RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK = 23,
494 RIL_PERSOSUBSTATE_RUIM_RUIM_PUK = 24
495} RIL_PersoSubstate;
496
497typedef enum {
498 RIL_APPSTATE_UNKNOWN = 0,
499 RIL_APPSTATE_DETECTED = 1,
500 RIL_APPSTATE_PIN = 2, /* If PIN1 or UPin is required */
501 RIL_APPSTATE_PUK = 3, /* If PUK1 or Puk for UPin is required */
Wink Saville7f856802009-06-09 10:23:37 -0700502 RIL_APPSTATE_SUBSCRIPTION_PERSO = 4, /* perso_substate should be look at
Wink Savillef4c4d362009-04-02 01:37:03 -0700503 when app_state is assigned to this value */
504 RIL_APPSTATE_READY = 5
505} RIL_AppState;
506
507typedef enum {
508 RIL_PINSTATE_UNKNOWN = 0,
509 RIL_PINSTATE_ENABLED_NOT_VERIFIED = 1,
510 RIL_PINSTATE_ENABLED_VERIFIED = 2,
511 RIL_PINSTATE_DISABLED = 3,
512 RIL_PINSTATE_ENABLED_BLOCKED = 4,
513 RIL_PINSTATE_ENABLED_PERM_BLOCKED = 5
514} RIL_PinState;
515
516typedef enum {
517 RIL_APPTYPE_UNKNOWN = 0,
518 RIL_APPTYPE_SIM = 1,
519 RIL_APPTYPE_USIM = 2,
520 RIL_APPTYPE_RUIM = 3,
Wink Savillec0114b32011-02-18 10:14:07 -0800521 RIL_APPTYPE_CSIM = 4,
522 RIL_APPTYPE_ISIM = 5
Wink Savillef4c4d362009-04-02 01:37:03 -0700523} RIL_AppType;
524
525typedef struct
526{
Wink Saville7f856802009-06-09 10:23:37 -0700527 RIL_AppType app_type;
528 RIL_AppState app_state;
529 RIL_PersoSubstate perso_substate; /* applicable only if app_state ==
Wink Savillef4c4d362009-04-02 01:37:03 -0700530 RIL_APPSTATE_SUBSCRIPTION_PERSO */
Wink Saville7f856802009-06-09 10:23:37 -0700531 char *aid_ptr; /* null terminated string, e.g., from 0xA0, 0x00 -> 0x41,
Wink Savillef4c4d362009-04-02 01:37:03 -0700532 0x30, 0x30, 0x30 */
533 char *app_label_ptr; /* null terminated string */
Wink Savillec0114b32011-02-18 10:14:07 -0800534 int pin1_replaced; /* applicable to USIM, CSIM & ISIM */
Wink Saville7f856802009-06-09 10:23:37 -0700535 RIL_PinState pin1;
536 RIL_PinState pin2;
Wink Savillef4c4d362009-04-02 01:37:03 -0700537} RIL_AppStatus;
538
Wink Savillec0114b32011-02-18 10:14:07 -0800539/* Deprecated, use RIL_CardStatus_v6 */
540typedef struct
541{
542 RIL_CardState card_state;
543 RIL_PinState universal_pin_state; /* applicable to USIM and CSIM: RIL_PINSTATE_xxx */
544 int gsm_umts_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
545 int cdma_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
546 int num_applications; /* value <= RIL_CARD_MAX_APPS */
547 RIL_AppStatus applications[RIL_CARD_MAX_APPS];
548} RIL_CardStatus_v5;
549
Wink Savillef4c4d362009-04-02 01:37:03 -0700550typedef struct
551{
Wink Saville7f856802009-06-09 10:23:37 -0700552 RIL_CardState card_state;
Wink Savillef4c4d362009-04-02 01:37:03 -0700553 RIL_PinState universal_pin_state; /* applicable to USIM and CSIM: RIL_PINSTATE_xxx */
Wink Savillec0114b32011-02-18 10:14:07 -0800554 int gsm_umts_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
555 int cdma_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
556 int ims_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
Wink Savillef4c4d362009-04-02 01:37:03 -0700557 int num_applications; /* value <= RIL_CARD_MAX_APPS */
558 RIL_AppStatus applications[RIL_CARD_MAX_APPS];
Wink Savillec0114b32011-02-18 10:14:07 -0800559} RIL_CardStatus_v6;
Wink Savillef4c4d362009-04-02 01:37:03 -0700560
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800561/** The result of a SIM refresh, returned in data[0] of RIL_UNSOL_SIM_REFRESH
562 * or as part of RIL_SimRefreshResponse_v7
563 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800564typedef enum {
565 /* A file on SIM has been updated. data[1] contains the EFID. */
566 SIM_FILE_UPDATE = 0,
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800567 /* SIM initialized. All files should be re-read. */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800568 SIM_INIT = 1,
569 /* SIM reset. SIM power required, SIM may be locked and all files should be re-read. */
570 SIM_RESET = 2
571} RIL_SimRefreshResult;
572
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800573typedef struct {
574 RIL_SimRefreshResult result;
575 int ef_id; /* is the EFID of the updated file if the result is */
576 /* SIM_FILE_UPDATE or 0 for any other result. */
577 char * aid; /* is AID(application ID) of the card application */
578 /* See ETSI 102.221 8.1 and 101.220 4 */
579 /* For SIM_FILE_UPDATE result it can be set to AID of */
580 /* application in which updated EF resides or it can be */
581 /* NULL if EF is outside of an application. */
582 /* For SIM_INIT result this field is set to AID of */
583 /* application that caused REFRESH */
584 /* For SIM_RESET result it is NULL. */
585} RIL_SimRefreshResponse_v7;
586
Wink Savillec0114b32011-02-18 10:14:07 -0800587/* Deprecated, use RIL_CDMA_CallWaiting_v6 */
588typedef struct {
589 char * number; /* Remote party number */
590 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
591 char * name; /* Remote party name */
592 RIL_CDMA_SignalInfoRecord signalInfoRecord;
593} RIL_CDMA_CallWaiting_v5;
594
Wink Saville1b5fd232009-04-22 14:50:00 -0700595typedef struct {
596 char * number; /* Remote party number */
597 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
598 char * name; /* Remote party name */
Wink Saville3d54e742009-05-18 18:00:44 -0700599 RIL_CDMA_SignalInfoRecord signalInfoRecord;
Wink Savillec0114b32011-02-18 10:14:07 -0800600 /* Number type/Number plan required to support International Call Waiting */
601 int number_type; /* 0=Unknown, 1=International, 2=National,
602 3=Network specific, 4=subscriber */
603 int number_plan; /* 0=Unknown, 1=ISDN, 3=Data, 4=Telex, 8=Nat'l, 9=Private */
604} RIL_CDMA_CallWaiting_v6;
Wink Saville1b5fd232009-04-22 14:50:00 -0700605
Wink Savillea592eeb2009-05-22 13:26:36 -0700606/**
607 * Which types of Cell Broadcast Message (CBM) are to be received by the ME
608 *
609 * uFromServiceID - uToServiceID defines a range of CBM message identifiers
610 * whose value is 0x0000 - 0xFFFF as defined in TS 23.041 9.4.1.2.2 for GMS
611 * and 9.4.4.2.2 for UMTS. All other values can be treated as empty
612 * CBM message ID.
613 *
614 * uFromCodeScheme - uToCodeScheme defines a range of CBM data coding schemes
615 * whose value is 0x00 - 0xFF as defined in TS 23.041 9.4.1.2.3 for GMS
616 * and 9.4.4.2.3 for UMTS.
617 * All other values can be treated as empty CBM data coding scheme.
618 *
619 * selected 0 means message types specified in <fromServiceId, toServiceId>
620 * and <fromCodeScheme, toCodeScheme>are not accepted, while 1 means accepted.
621 *
622 * Used by RIL_REQUEST_GSM_GET_BROADCAST_CONFIG and
623 * RIL_REQUEST_GSM_SET_BROADCAST_CONFIG.
624 */
Wink Savillef4c4d362009-04-02 01:37:03 -0700625typedef struct {
Wink Savillea592eeb2009-05-22 13:26:36 -0700626 int fromServiceId;
627 int toServiceId;
628 int fromCodeScheme;
629 int toCodeScheme;
630 unsigned char selected;
631} RIL_GSM_BroadcastSmsConfigInfo;
Wink Savillef4c4d362009-04-02 01:37:03 -0700632
The Android Open Source Project34a51082009-03-05 14:34:37 -0800633/* No restriction at all including voice/SMS/USSD/SS/AV64 and packet data. */
634#define RIL_RESTRICTED_STATE_NONE 0x00
635/* Block emergency call due to restriction. But allow all normal voice/SMS/USSD/SS/AV64. */
636#define RIL_RESTRICTED_STATE_CS_EMERGENCY 0x01
637/* Block all normal voice/SMS/USSD/SS/AV64 due to restriction. Only Emergency call allowed. */
638#define RIL_RESTRICTED_STATE_CS_NORMAL 0x02
Wink Savillea592eeb2009-05-22 13:26:36 -0700639/* Block all voice/SMS/USSD/SS/AV64 including emergency call due to restriction.*/
The Android Open Source Project34a51082009-03-05 14:34:37 -0800640#define RIL_RESTRICTED_STATE_CS_ALL 0x04
641/* Block packet data access due to restriction. */
642#define RIL_RESTRICTED_STATE_PS_ALL 0x10
643
Wink Saville1b5fd232009-04-22 14:50:00 -0700644/* The status for an OTASP/OTAPA session */
645typedef enum {
646 CDMA_OTA_PROVISION_STATUS_SPL_UNLOCKED,
647 CDMA_OTA_PROVISION_STATUS_SPC_RETRIES_EXCEEDED,
648 CDMA_OTA_PROVISION_STATUS_A_KEY_EXCHANGED,
649 CDMA_OTA_PROVISION_STATUS_SSD_UPDATED,
650 CDMA_OTA_PROVISION_STATUS_NAM_DOWNLOADED,
651 CDMA_OTA_PROVISION_STATUS_MDN_DOWNLOADED,
652 CDMA_OTA_PROVISION_STATUS_IMSI_DOWNLOADED,
653 CDMA_OTA_PROVISION_STATUS_PRL_DOWNLOADED,
654 CDMA_OTA_PROVISION_STATUS_COMMITTED,
655 CDMA_OTA_PROVISION_STATUS_OTAPA_STARTED,
656 CDMA_OTA_PROVISION_STATUS_OTAPA_STOPPED,
657 CDMA_OTA_PROVISION_STATUS_OTAPA_ABORTED
658} RIL_CDMA_OTA_ProvisionStatus;
659
660typedef struct {
661 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
662 int bitErrorRate; /* bit error rate (0-7, 99) as defined in TS 27.007 8.5 */
663} RIL_GW_SignalStrength;
664
Wink Savillec57b3eb2013-04-17 12:51:41 -0700665typedef struct {
666 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
667 int bitErrorRate; /* bit error rate (0-7, 99) as defined in TS 27.007 8.5 */
668} RIL_SignalStrengthWcdma;
Wink Saville1b5fd232009-04-22 14:50:00 -0700669
670typedef struct {
671 int dbm; /* Valid values are positive integers. This value is the actual RSSI value
672 * multiplied by -1. Example: If the actual RSSI is -75, then this response
673 * value will be 75.
674 */
675 int ecio; /* Valid values are positive integers. This value is the actual Ec/Io multiplied
676 * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
677 * will be 125.
678 */
679} RIL_CDMA_SignalStrength;
680
681
682typedef struct {
683 int dbm; /* Valid values are positive integers. This value is the actual RSSI value
684 * multiplied by -1. Example: If the actual RSSI is -75, then this response
685 * value will be 75.
686 */
687 int ecio; /* Valid values are positive integers. This value is the actual Ec/Io multiplied
688 * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
689 * will be 125.
690 */
691 int signalNoiseRatio; /* Valid values are 0-8. 8 is the highest signal to noise ratio. */
692} RIL_EVDO_SignalStrength;
693
Wink Savillec0114b32011-02-18 10:14:07 -0800694typedef struct {
695 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
Wink Saville473adc92011-06-13 10:24:09 -0700696 int rsrp; /* The current Reference Signal Receive Power in dBm multipled by -1.
697 * Range: 44 to 140 dBm
698 * INT_MAX: 0x7FFFFFFF denotes invalid value.
699 * Reference: 3GPP TS 36.133 9.1.4 */
700 int rsrq; /* The current Reference Signal Receive Quality in dB multiplied by -1.
701 * Range: 20 to 3 dB.
702 * INT_MAX: 0x7FFFFFFF denotes invalid value.
703 * Reference: 3GPP TS 36.133 9.1.7 */
704 int rssnr; /* The current reference signal signal-to-noise ratio in 0.1 dB units.
705 * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
706 * INT_MAX : 0x7FFFFFFF denotes invalid value.
707 * Reference: 3GPP TS 36.101 8.1.1 */
708 int cqi; /* The current Channel Quality Indicator.
709 * Range: 0 to 15.
710 * INT_MAX : 0x7FFFFFFF denotes invalid value.
711 * Reference: 3GPP TS 36.101 9.2, 9.3, A.4 */
Wink Savillec0114b32011-02-18 10:14:07 -0800712} RIL_LTE_SignalStrength;
713
Wink Saville8a9e0212013-04-09 12:11:38 -0700714typedef struct {
715 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
716 int rsrp; /* The current Reference Signal Receive Power in dBm multipled by -1.
717 * Range: 44 to 140 dBm
718 * INT_MAX: 0x7FFFFFFF denotes invalid value.
719 * Reference: 3GPP TS 36.133 9.1.4 */
720 int rsrq; /* The current Reference Signal Receive Quality in dB multiplied by -1.
721 * Range: 20 to 3 dB.
722 * INT_MAX: 0x7FFFFFFF denotes invalid value.
723 * Reference: 3GPP TS 36.133 9.1.7 */
724 int rssnr; /* The current reference signal signal-to-noise ratio in 0.1 dB units.
725 * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
726 * INT_MAX : 0x7FFFFFFF denotes invalid value.
727 * Reference: 3GPP TS 36.101 8.1.1 */
728 int cqi; /* The current Channel Quality Indicator.
729 * Range: 0 to 15.
730 * INT_MAX : 0x7FFFFFFF denotes invalid value.
731 * Reference: 3GPP TS 36.101 9.2, 9.3, A.4 */
732 int timingAdvance; /* timing advance in micro seconds for a one way trip from cell to device.
733 * Approximate distance can be calculated using 300m/us * timingAdvance.
734 * Range: 0 to 0x7FFFFFFE
735 * INT_MAX : 0x7FFFFFFF denotes invalid value.
736 * Reference: 3GPP 36.321 section 6.1.3.5
737 * also: http://www.cellular-planningoptimization.com/2010/02/timing-advance-with-calculation.html */
738} RIL_LTE_SignalStrength_v8;
739
Wink Savillec0114b32011-02-18 10:14:07 -0800740/* Deprecated, use RIL_SignalStrength_v6 */
741typedef struct {
742 RIL_GW_SignalStrength GW_SignalStrength;
743 RIL_CDMA_SignalStrength CDMA_SignalStrength;
744 RIL_EVDO_SignalStrength EVDO_SignalStrength;
745} RIL_SignalStrength_v5;
Wink Saville1b5fd232009-04-22 14:50:00 -0700746
747typedef struct {
748 RIL_GW_SignalStrength GW_SignalStrength;
749 RIL_CDMA_SignalStrength CDMA_SignalStrength;
750 RIL_EVDO_SignalStrength EVDO_SignalStrength;
Wink Savillec0114b32011-02-18 10:14:07 -0800751 RIL_LTE_SignalStrength LTE_SignalStrength;
752} RIL_SignalStrength_v6;
Wink Saville1b5fd232009-04-22 14:50:00 -0700753
Wink Saville8a9e0212013-04-09 12:11:38 -0700754typedef struct {
755 RIL_GW_SignalStrength GW_SignalStrength;
756 RIL_CDMA_SignalStrength CDMA_SignalStrength;
757 RIL_EVDO_SignalStrength EVDO_SignalStrength;
758 RIL_LTE_SignalStrength_v8 LTE_SignalStrength;
759} RIL_SignalStrength_v8;
760
761/** RIL_CellIdentityGsm */
762typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -0700763 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
764 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
765 int lac; /* 16-bit Location Area Code, 0..65535, INT_MAX if unknown */
766 int cid; /* 16-bit GSM Cell Identity described in TS 27.007, 0..65535, INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -0700767} RIL_CellIdentityGsm;
768
Wink Savillec57b3eb2013-04-17 12:51:41 -0700769/** RIL_CellIdentityWcdma */
770typedef struct {
771 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
772 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
773 int lac; /* 16-bit Location Area Code, 0..65535, INT_MAX if unknown */
774 int cid; /* 28-bit UMTS Cell Identity described in TS 25.331, 0..268435455, INT_MAX if unknown */
775 int psc; /* 9-bit UMTS Primary Scrambling Code described in TS 25.331, 0..511, INT_MAX if unknown */
776} RIL_CellIdentityWcdma;
777
Wink Saville8a9e0212013-04-09 12:11:38 -0700778/** RIL_CellIdentityCdma */
779typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -0700780 int networkId; /* Network Id 0..65535, INT_MAX if unknown */
781 int systemId; /* CDMA System Id 0..32767, INT_MAX if unknown */
782 int basestationId; /* Base Station Id 0..65535, INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -0700783 int longitude; /* Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
784 * It is represented in units of 0.25 seconds and ranges from -2592000
785 * to 2592000, both values inclusive (corresponding to a range of -180
Wink Savillec57b3eb2013-04-17 12:51:41 -0700786 * to +180 degrees). INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -0700787
788 int latitude; /* Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
789 * It is represented in units of 0.25 seconds and ranges from -1296000
790 * to 1296000, both values inclusive (corresponding to a range of -90
Wink Savillec57b3eb2013-04-17 12:51:41 -0700791 * to +90 degrees). INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -0700792} RIL_CellIdentityCdma;
793
794/** RIL_CellIdentityLte */
795typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -0700796 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
797 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
798 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */
799 int pci; /* physical cell id 0..503, INT_MAX if unknown */
800 int tac; /* 16-bit tracking area code, INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -0700801} RIL_CellIdentityLte;
802
803/** RIL_CellInfoGsm */
804typedef struct {
805 RIL_CellIdentityGsm cellIdentityGsm;
806 RIL_GW_SignalStrength signalStrengthGsm;
807} RIL_CellInfoGsm;
808
Wink Savillec57b3eb2013-04-17 12:51:41 -0700809/** RIL_CellInfoWcdma */
810typedef struct {
811 RIL_CellIdentityWcdma cellIdentityWcdma;
812 RIL_SignalStrengthWcdma signalStrengthWcdma;
813} RIL_CellInfoWcdma;
814
Wink Saville8a9e0212013-04-09 12:11:38 -0700815/** RIL_CellInfoCdma */
816typedef struct {
817 RIL_CellIdentityCdma cellIdentityCdma;
818 RIL_CDMA_SignalStrength signalStrengthCdma;
819 RIL_EVDO_SignalStrength signalStrengthEvdo;
820} RIL_CellInfoCdma;
821
822/** RIL_CellInfoLte */
823typedef struct {
824 RIL_CellIdentityLte cellIdentityLte;
825 RIL_LTE_SignalStrength_v8 signalStrengthLte;
826} RIL_CellInfoLte;
827
828// Must be the same as CellInfo.TYPE_XXX
829typedef enum {
830 RIL_CELL_INFO_TYPE_GSM = 1,
831 RIL_CELL_INFO_TYPE_CDMA = 2,
832 RIL_CELL_INFO_TYPE_LTE = 3,
Wink Savillec57b3eb2013-04-17 12:51:41 -0700833 RIL_CELL_INFO_TYPE_WCDMA = 4,
Wink Saville8a9e0212013-04-09 12:11:38 -0700834} RIL_CellInfoType;
835
836// Must be the same as CellInfo.TIMESTAMP_TYPE_XXX
837typedef enum {
838 RIL_TIMESTAMP_TYPE_UNKNOWN = 0,
839 RIL_TIMESTAMP_TYPE_ANTENNA = 1,
840 RIL_TIMESTAMP_TYPE_MODEM = 2,
841 RIL_TIMESTAMP_TYPE_OEM_RIL = 3,
842 RIL_TIMESTAMP_TYPE_JAVA_RIL = 4,
843} RIL_TimeStampType;
844
845typedef struct {
846 RIL_CellInfoType cellInfoType; /* cell type for selecting from union CellInfo */
847 int registered; /* !0 if this cell is registered 0 if not registered */
848 RIL_TimeStampType timeStampType; /* type of time stamp represented by timeStamp */
849 uint64_t timeStamp; /* Time in nanos as returned by ril_nano_time */
850 union {
851 RIL_CellInfoGsm gsm;
852 RIL_CellInfoCdma cdma;
853 RIL_CellInfoLte lte;
Wink Savillec57b3eb2013-04-17 12:51:41 -0700854 RIL_CellInfoWcdma wcdma;
Wink Saville8a9e0212013-04-09 12:11:38 -0700855 } CellInfo;
856} RIL_CellInfo;
857
Wink Saville1b5fd232009-04-22 14:50:00 -0700858/* Names of the CDMA info records (C.S0005 section 3.7.5) */
859typedef enum {
860 RIL_CDMA_DISPLAY_INFO_REC,
861 RIL_CDMA_CALLED_PARTY_NUMBER_INFO_REC,
862 RIL_CDMA_CALLING_PARTY_NUMBER_INFO_REC,
863 RIL_CDMA_CONNECTED_NUMBER_INFO_REC,
864 RIL_CDMA_SIGNAL_INFO_REC,
865 RIL_CDMA_REDIRECTING_NUMBER_INFO_REC,
866 RIL_CDMA_LINE_CONTROL_INFO_REC,
867 RIL_CDMA_EXTENDED_DISPLAY_INFO_REC,
868 RIL_CDMA_T53_CLIR_INFO_REC,
869 RIL_CDMA_T53_RELEASE_INFO_REC,
870 RIL_CDMA_T53_AUDIO_CONTROL_INFO_REC
871} RIL_CDMA_InfoRecName;
872
873/* Display Info Rec as defined in C.S0005 section 3.7.5.1
874 Extended Display Info Rec as defined in C.S0005 section 3.7.5.16
875 Note: the Extended Display info rec contains multiple records of the
876 form: display_tag, display_len, and display_len occurrences of the
877 chari field if the display_tag is not 10000000 or 10000001.
878 To save space, the records are stored consecutively in a byte buffer.
879 The display_tag, display_len and chari fields are all 1 byte.
880*/
881
882typedef struct {
883 char alpha_len;
Wink Savillea592eeb2009-05-22 13:26:36 -0700884 char alpha_buf[CDMA_ALPHA_INFO_BUFFER_LENGTH];
Wink Saville1b5fd232009-04-22 14:50:00 -0700885} RIL_CDMA_DisplayInfoRecord;
886
887/* Called Party Number Info Rec as defined in C.S0005 section 3.7.5.2
888 Calling Party Number Info Rec as defined in C.S0005 section 3.7.5.3
889 Connected Number Info Rec as defined in C.S0005 section 3.7.5.4
890*/
891
892typedef struct {
893 char len;
Wink Savillea592eeb2009-05-22 13:26:36 -0700894 char buf[CDMA_NUMBER_INFO_BUFFER_LENGTH];
Wink Saville1b5fd232009-04-22 14:50:00 -0700895 char number_type;
896 char number_plan;
897 char pi;
898 char si;
899} RIL_CDMA_NumberInfoRecord;
900
901/* Redirecting Number Information Record as defined in C.S0005 section 3.7.5.11 */
902typedef enum {
903 RIL_REDIRECTING_REASON_UNKNOWN = 0,
904 RIL_REDIRECTING_REASON_CALL_FORWARDING_BUSY = 1,
905 RIL_REDIRECTING_REASON_CALL_FORWARDING_NO_REPLY = 2,
906 RIL_REDIRECTING_REASON_CALLED_DTE_OUT_OF_ORDER = 9,
907 RIL_REDIRECTING_REASON_CALL_FORWARDING_BY_THE_CALLED_DTE = 10,
908 RIL_REDIRECTING_REASON_CALL_FORWARDING_UNCONDITIONAL = 15,
909 RIL_REDIRECTING_REASON_RESERVED
910} RIL_CDMA_RedirectingReason;
911
912typedef struct {
913 RIL_CDMA_NumberInfoRecord redirectingNumber;
914 /* redirectingReason is set to RIL_REDIRECTING_REASON_UNKNOWN if not included */
915 RIL_CDMA_RedirectingReason redirectingReason;
916} RIL_CDMA_RedirectingNumberInfoRecord;
917
918/* Line Control Information Record as defined in C.S0005 section 3.7.5.15 */
919typedef struct {
920 char lineCtrlPolarityIncluded;
921 char lineCtrlToggle;
922 char lineCtrlReverse;
923 char lineCtrlPowerDenial;
924} RIL_CDMA_LineControlInfoRecord;
925
926/* T53 CLIR Information Record */
927typedef struct {
928 char cause;
929} RIL_CDMA_T53_CLIRInfoRecord;
930
931/* T53 Audio Control Information Record */
932typedef struct {
933 char upLink;
934 char downLink;
935} RIL_CDMA_T53_AudioControlInfoRecord;
936
937typedef struct {
938
939 RIL_CDMA_InfoRecName name;
940
941 union {
942 /* Display and Extended Display Info Rec */
943 RIL_CDMA_DisplayInfoRecord display;
944
945 /* Called Party Number, Calling Party Number, Connected Number Info Rec */
946 RIL_CDMA_NumberInfoRecord number;
947
948 /* Signal Info Rec */
949 RIL_CDMA_SignalInfoRecord signal;
950
951 /* Redirecting Number Info Rec */
952 RIL_CDMA_RedirectingNumberInfoRecord redir;
953
954 /* Line Control Info Rec */
955 RIL_CDMA_LineControlInfoRecord lineCtrl;
956
957 /* T53 CLIR Info Rec */
958 RIL_CDMA_T53_CLIRInfoRecord clir;
959
960 /* T53 Audio Control Info Rec */
961 RIL_CDMA_T53_AudioControlInfoRecord audioCtrl;
962 } rec;
963} RIL_CDMA_InformationRecord;
964
965#define RIL_CDMA_MAX_NUMBER_OF_INFO_RECS 10
966
967typedef struct {
968 char numberOfInfoRecs;
969 RIL_CDMA_InformationRecord infoRec[RIL_CDMA_MAX_NUMBER_OF_INFO_RECS];
970} RIL_CDMA_InformationRecords;
971
Wink Saville7f856802009-06-09 10:23:37 -0700972/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800973 * RIL_REQUEST_GET_SIM_STATUS
974 *
975 * Requests status of the SIM interface and the SIM card
Wink Saville7f856802009-06-09 10:23:37 -0700976 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800977 * "data" is NULL
978 *
Wink Savillefd729372011-02-22 16:19:39 -0800979 * "response" is const RIL_CardStatus_v6 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800980 *
981 * Valid errors:
982 * Must never fail
983 */
984#define RIL_REQUEST_GET_SIM_STATUS 1
985
986/**
987 * RIL_REQUEST_ENTER_SIM_PIN
988 *
John Wang309ac292009-07-30 14:53:23 -0700989 * Supplies SIM PIN. Only called if RIL_CardStatus has RIL_APPSTATE_PIN state
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800990 *
991 * "data" is const char **
992 * ((const char **)data)[0] is PIN value
Wink Savillec0114b32011-02-18 10:14:07 -0800993 * ((const char **)data)[1] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800994 *
jsh593c9102009-06-24 16:13:44 -0700995 * "response" is int *
996 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800997 *
998 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -0700999 *
1000 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001001 * RADIO_NOT_AVAILABLE (radio resetting)
1002 * GENERIC_FAILURE
1003 * PASSWORD_INCORRECT
1004 */
1005
1006#define RIL_REQUEST_ENTER_SIM_PIN 2
1007
1008
1009/**
1010 * RIL_REQUEST_ENTER_SIM_PUK
1011 *
Wink Saville7f856802009-06-09 10:23:37 -07001012 * Supplies SIM PUK and new PIN.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001013 *
1014 * "data" is const char **
1015 * ((const char **)data)[0] is PUK value
1016 * ((const char **)data)[1] is new PIN value
Wink Savillec0114b32011-02-18 10:14:07 -08001017 * ((const char **)data)[2] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001018 *
jsh593c9102009-06-24 16:13:44 -07001019 * "response" is int *
1020 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001021 *
1022 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001023 *
1024 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001025 * RADIO_NOT_AVAILABLE (radio resetting)
1026 * GENERIC_FAILURE
1027 * PASSWORD_INCORRECT
1028 * (PUK is invalid)
1029 */
1030
1031#define RIL_REQUEST_ENTER_SIM_PUK 3
1032
1033/**
1034 * RIL_REQUEST_ENTER_SIM_PIN2
1035 *
1036 * Supplies SIM PIN2. Only called following operation where SIM_PIN2 was
1037 * returned as a a failure from a previous operation.
1038 *
1039 * "data" is const char **
1040 * ((const char **)data)[0] is PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001041 * ((const char **)data)[1] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001042 *
jsh593c9102009-06-24 16:13:44 -07001043 * "response" is int *
1044 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001045 *
1046 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001047 *
1048 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001049 * RADIO_NOT_AVAILABLE (radio resetting)
1050 * GENERIC_FAILURE
1051 * PASSWORD_INCORRECT
1052 */
1053
1054#define RIL_REQUEST_ENTER_SIM_PIN2 4
1055
1056/**
1057 * RIL_REQUEST_ENTER_SIM_PUK2
1058 *
Wink Saville7f856802009-06-09 10:23:37 -07001059 * Supplies SIM PUK2 and new PIN2.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001060 *
1061 * "data" is const char **
1062 * ((const char **)data)[0] is PUK2 value
1063 * ((const char **)data)[1] is new PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001064 * ((const char **)data)[2] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001065 *
jsh593c9102009-06-24 16:13:44 -07001066 * "response" is int *
1067 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001068 *
1069 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001070 *
1071 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001072 * RADIO_NOT_AVAILABLE (radio resetting)
1073 * GENERIC_FAILURE
1074 * PASSWORD_INCORRECT
1075 * (PUK2 is invalid)
1076 */
1077
1078#define RIL_REQUEST_ENTER_SIM_PUK2 5
1079
1080/**
1081 * RIL_REQUEST_CHANGE_SIM_PIN
1082 *
Wink Saville7f856802009-06-09 10:23:37 -07001083 * Supplies old SIM PIN and new PIN.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001084 *
1085 * "data" is const char **
1086 * ((const char **)data)[0] is old PIN value
1087 * ((const char **)data)[1] is new PIN value
Wink Savillec0114b32011-02-18 10:14:07 -08001088 * ((const char **)data)[2] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001089 *
jsh593c9102009-06-24 16:13:44 -07001090 * "response" is int *
1091 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001092 *
1093 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001094 *
1095 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001096 * RADIO_NOT_AVAILABLE (radio resetting)
1097 * GENERIC_FAILURE
1098 * PASSWORD_INCORRECT
1099 * (old PIN is invalid)
Wink Saville7f856802009-06-09 10:23:37 -07001100 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001101 */
1102
1103#define RIL_REQUEST_CHANGE_SIM_PIN 6
1104
1105
1106/**
1107 * RIL_REQUEST_CHANGE_SIM_PIN2
1108 *
Wink Saville7f856802009-06-09 10:23:37 -07001109 * Supplies old SIM PIN2 and new PIN2.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001110 *
1111 * "data" is const char **
1112 * ((const char **)data)[0] is old PIN2 value
1113 * ((const char **)data)[1] is new PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001114 * ((const char **)data)[2] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001115 *
jsh593c9102009-06-24 16:13:44 -07001116 * "response" is int *
1117 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001118 *
1119 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001120 *
1121 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001122 * RADIO_NOT_AVAILABLE (radio resetting)
1123 * GENERIC_FAILURE
1124 * PASSWORD_INCORRECT
1125 * (old PIN2 is invalid)
Wink Saville7f856802009-06-09 10:23:37 -07001126 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001127 */
1128
1129#define RIL_REQUEST_CHANGE_SIM_PIN2 7
1130
1131/**
1132 * RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION
1133 *
1134 * Requests that network personlization be deactivated
1135 *
1136 * "data" is const char **
1137 * ((const char **)(data))[0]] is network depersonlization code
1138 *
jsh593c9102009-06-24 16:13:44 -07001139 * "response" is int *
1140 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001141 *
1142 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001143 *
1144 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001145 * RADIO_NOT_AVAILABLE (radio resetting)
1146 * GENERIC_FAILURE
1147 * PASSWORD_INCORRECT
1148 * (code is invalid)
1149 */
1150
1151#define RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION 8
1152
1153/**
Wink Saville7f856802009-06-09 10:23:37 -07001154 * RIL_REQUEST_GET_CURRENT_CALLS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001155 *
1156 * Requests current call list
1157 *
1158 * "data" is NULL
1159 *
1160 * "response" must be a "const RIL_Call **"
Wink Saville7f856802009-06-09 10:23:37 -07001161 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001162 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001163 *
1164 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001165 * RADIO_NOT_AVAILABLE (radio resetting)
1166 * GENERIC_FAILURE
1167 * (request will be made again in a few hundred msec)
1168 */
1169
1170#define RIL_REQUEST_GET_CURRENT_CALLS 9
1171
1172
Wink Saville7f856802009-06-09 10:23:37 -07001173/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001174 * RIL_REQUEST_DIAL
1175 *
1176 * Initiate voice call
1177 *
1178 * "data" is const RIL_Dial *
1179 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07001180 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001181 * This method is never used for supplementary service codes
1182 *
1183 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001184 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001185 * RADIO_NOT_AVAILABLE (radio resetting)
1186 * GENERIC_FAILURE
1187 */
1188#define RIL_REQUEST_DIAL 10
1189
1190/**
1191 * RIL_REQUEST_GET_IMSI
1192 *
1193 * Get the SIM IMSI
1194 *
Naveen Kalla2bc78d62011-12-07 16:22:53 -08001195 * Only valid when radio state is "RADIO_STATE_ON"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001196 *
Wink Savillec0114b32011-02-18 10:14:07 -08001197 * "data" is const char **
1198 * ((const char **)data)[0] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001199 * "response" is a const char * containing the IMSI
1200 *
1201 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001202 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001203 * RADIO_NOT_AVAILABLE (radio resetting)
1204 * GENERIC_FAILURE
1205 */
1206
1207#define RIL_REQUEST_GET_IMSI 11
1208
1209/**
1210 * RIL_REQUEST_HANGUP
1211 *
1212 * Hang up a specific line (like AT+CHLD=1x)
1213 *
John Wang06bae4b2010-11-18 16:37:09 -08001214 * After this HANGUP request returns, RIL should show the connection is NOT
1215 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1216 *
Wink Saville7f856802009-06-09 10:23:37 -07001217 * "data" is an int *
Wink Savillef4c4d362009-04-02 01:37:03 -07001218 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001219 *
1220 * "response" is NULL
1221 *
1222 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001223 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001224 * RADIO_NOT_AVAILABLE (radio resetting)
1225 * GENERIC_FAILURE
1226 */
1227
1228#define RIL_REQUEST_HANGUP 12
1229
1230/**
1231 * RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND
1232 *
1233 * Hang up waiting or held (like AT+CHLD=0)
1234 *
John Wang06bae4b2010-11-18 16:37:09 -08001235 * After this HANGUP request returns, RIL should show the connection is NOT
1236 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1237 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001238 * "data" is NULL
1239 * "response" is NULL
1240 *
1241 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001242 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001243 * RADIO_NOT_AVAILABLE (radio resetting)
1244 * GENERIC_FAILURE
1245 */
1246
1247#define RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND 13
1248
1249/**
1250 * RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND
1251 *
1252 * Hang up waiting or held (like AT+CHLD=1)
1253 *
John Wang06bae4b2010-11-18 16:37:09 -08001254 * After this HANGUP request returns, RIL should show the connection is NOT
1255 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1256 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001257 * "data" is NULL
1258 * "response" is NULL
1259 *
1260 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001261 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001262 * RADIO_NOT_AVAILABLE (radio resetting)
1263 * GENERIC_FAILURE
1264 */
1265
1266#define RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND 14
1267
1268/**
1269 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE
1270 *
1271 * Switch waiting or holding call and active call (like AT+CHLD=2)
1272 *
1273 * State transitions should be is follows:
1274 *
1275 * If call 1 is waiting and call 2 is active, then if this re
1276 *
1277 * BEFORE AFTER
1278 * Call 1 Call 2 Call 1 Call 2
1279 * ACTIVE HOLDING HOLDING ACTIVE
1280 * ACTIVE WAITING HOLDING ACTIVE
1281 * HOLDING WAITING HOLDING ACTIVE
1282 * ACTIVE IDLE HOLDING IDLE
1283 * IDLE IDLE IDLE IDLE
1284 *
1285 * "data" is NULL
1286 * "response" is NULL
1287 *
1288 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001289 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001290 * RADIO_NOT_AVAILABLE (radio resetting)
1291 * GENERIC_FAILURE
1292 */
1293
1294#define RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE 15
1295#define RIL_REQUEST_SWITCH_HOLDING_AND_ACTIVE 15
1296
1297/**
1298 * RIL_REQUEST_CONFERENCE
1299 *
1300 * Conference holding and active (like AT+CHLD=3)
1301
1302 * "data" is NULL
1303 * "response" is NULL
1304 *
1305 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001306 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001307 * RADIO_NOT_AVAILABLE (radio resetting)
1308 * GENERIC_FAILURE
1309 */
1310#define RIL_REQUEST_CONFERENCE 16
1311
1312/**
1313 * RIL_REQUEST_UDUB
1314 *
Wink Saville7f856802009-06-09 10:23:37 -07001315 * Send UDUB (user determined used busy) to ringing or
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001316 * waiting call answer)(RIL_BasicRequest r);
1317 *
1318 * "data" is NULL
1319 * "response" is NULL
1320 *
1321 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001322 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001323 * RADIO_NOT_AVAILABLE (radio resetting)
1324 * GENERIC_FAILURE
1325 */
1326#define RIL_REQUEST_UDUB 17
1327
1328/**
1329 * RIL_REQUEST_LAST_CALL_FAIL_CAUSE
1330 *
1331 * Requests the failure cause code for the most recently terminated call
1332 *
1333 * "data" is NULL
1334 * "response" is a "int *"
Wink Saville1b5fd232009-04-22 14:50:00 -07001335 * ((int *)response)[0] is RIL_LastCallFailCause. GSM failure reasons are
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001336 * mapped to cause codes defined in TS 24.008 Annex H where possible. CDMA
1337 * failure reasons are derived from the possible call failure scenarios
1338 * described in the "CDMA IS-2000 Release A (C.S0005-A v6.0)" standard.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001339 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08001340 * The implementation should return CALL_FAIL_ERROR_UNSPECIFIED for blocked
1341 * MO calls by restricted state (See RIL_UNSOL_RESTRICTED_STATE_CHANGED)
1342 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001343 * If the implementation does not have access to the exact cause codes,
1344 * then it should return one of the values listed in RIL_LastCallFailCause,
1345 * as the UI layer needs to distinguish these cases for tone generation or
1346 * error notification.
1347 *
1348 * Valid errors:
1349 * SUCCESS
1350 * RADIO_NOT_AVAILABLE
1351 * GENERIC_FAILURE
1352 *
Wink Savillef4c4d362009-04-02 01:37:03 -07001353 * See also: RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001354 */
1355#define RIL_REQUEST_LAST_CALL_FAIL_CAUSE 18
1356
1357/**
1358 * RIL_REQUEST_SIGNAL_STRENGTH
1359 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001360 * Requests current signal strength and associated information
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001361 *
1362 * Must succeed if radio is on.
1363 *
1364 * "data" is NULL
Wink Saville1b5fd232009-04-22 14:50:00 -07001365 *
1366 * "response" is a const RIL_SignalStrength *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001367 *
1368 * Valid errors:
1369 * SUCCESS
1370 * RADIO_NOT_AVAILABLE
1371 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001372#define RIL_REQUEST_SIGNAL_STRENGTH 19
Wink Saville3d54e742009-05-18 18:00:44 -07001373
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001374/**
Wink Savillec0114b32011-02-18 10:14:07 -08001375 * RIL_REQUEST_VOICE_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001376 *
1377 * Request current registration state
1378 *
1379 * "data" is NULL
1380 * "response" is a "char **"
Wink Savillef4c4d362009-04-02 01:37:03 -07001381 * ((const char **)response)[0] is registration state 0-6,
Wink Saville1b5fd232009-04-22 14:50:00 -07001382 * 0 - Not registered, MT is not currently searching
1383 * a new operator to register
Wink Savillef4c4d362009-04-02 01:37:03 -07001384 * 1 - Registered, home network
Wink Saville1b5fd232009-04-22 14:50:00 -07001385 * 2 - Not registered, but MT is currently searching
1386 * a new operator to register
Wink Savillef4c4d362009-04-02 01:37:03 -07001387 * 3 - Registration denied
1388 * 4 - Unknown
1389 * 5 - Registered, roaming
John Wang7f8ded12010-01-21 15:07:28 -08001390 * 10 - Same as 0, but indicates that emergency calls
1391 * are enabled.
1392 * 12 - Same as 2, but indicates that emergency calls
1393 * are enabled.
1394 * 13 - Same as 3, but indicates that emergency calls
1395 * are enabled.
1396 * 14 - Same as 4, but indicates that emergency calls
1397 * are enabled.
1398 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001399 * ((const char **)response)[1] is LAC if registered on a GSM/WCDMA system or
1400 * NULL if not.Valid LAC are 0x0000 - 0xffff
1401 * ((const char **)response)[2] is CID if registered on a * GSM/WCDMA or
1402 * NULL if not.
1403 * Valid CID are 0x00000000 - 0xffffffff
1404 * In GSM, CID is Cell ID (see TS 27.007)
1405 * in 16 bits
1406 * In UMTS, CID is UMTS Cell Identity
1407 * (see TS 25.331) in 28 bits
Wink Saville43808972011-01-13 17:39:51 -08001408 * ((const char **)response)[3] indicates the available voice radio technology,
1409 * valid values as defined by RIL_RadioTechnology.
Wink Saville1b5fd232009-04-22 14:50:00 -07001410 * ((const char **)response)[4] is Base Station ID if registered on a CDMA
1411 * system or NULL if not. Base Station ID in
jsh29be25c2009-07-14 20:18:59 -07001412 * decimal format
Wink Saville1b5fd232009-04-22 14:50:00 -07001413 * ((const char **)response)[5] is Base Station latitude if registered on a
1414 * CDMA system or NULL if not. Base Station
Naveen Kalla36b721c2009-10-13 18:29:41 -07001415 * latitude is a decimal number as specified in
1416 * 3GPP2 C.S0005-A v6.0. It is represented in
1417 * units of 0.25 seconds and ranges from -1296000
1418 * to 1296000, both values inclusive (corresponding
Wink Saville43808972011-01-13 17:39:51 -08001419 * to a range of -90 to +90 degrees).
Wink Saville1b5fd232009-04-22 14:50:00 -07001420 * ((const char **)response)[6] is Base Station longitude if registered on a
1421 * CDMA system or NULL if not. Base Station
Naveen Kalla36b721c2009-10-13 18:29:41 -07001422 * longitude is a decimal number as specified in
1423 * 3GPP2 C.S0005-A v6.0. It is represented in
1424 * units of 0.25 seconds and ranges from -2592000
1425 * to 2592000, both values inclusive (corresponding
Wink Saville43808972011-01-13 17:39:51 -08001426 * to a range of -180 to +180 degrees).
Wink Saville1b5fd232009-04-22 14:50:00 -07001427 * ((const char **)response)[7] is concurrent services support indicator if
1428 * registered on a CDMA system 0-1.
1429 * 0 - Concurrent services not supported,
1430 * 1 - Concurrent services supported
1431 * ((const char **)response)[8] is System ID if registered on a CDMA system or
1432 * NULL if not. Valid System ID are 0 - 32767
1433 * ((const char **)response)[9] is Network ID if registered on a CDMA system or
1434 * NULL if not. Valid System ID are 0 - 65535
1435 * ((const char **)response)[10] is the TSB-58 Roaming Indicator if registered
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001436 * on a CDMA or EVDO system or NULL if not. Valid values
Wink Saville1b5fd232009-04-22 14:50:00 -07001437 * are 0-255.
1438 * ((const char **)response)[11] indicates whether the current system is in the
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001439 * PRL if registered on a CDMA or EVDO system or NULL if
Wink Saville1b5fd232009-04-22 14:50:00 -07001440 * not. 0=not in the PRL, 1=in the PRL
1441 * ((const char **)response)[12] is the default Roaming Indicator from the PRL,
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001442 * if registered on a CDMA or EVDO system or NULL if not.
Wink Saville1b5fd232009-04-22 14:50:00 -07001443 * Valid values are 0-255.
1444 * ((const char **)response)[13] if registration state is 3 (Registration
1445 * denied) this is an enumerated reason why
jsh602f80f2009-07-10 15:44:37 -07001446 * registration was denied. See 3GPP TS 24.008,
1447 * 10.5.3.6 and Annex G.
1448 * 0 - General
1449 * 1 - Authentication Failure
1450 * 2 - IMSI unknown in HLR
1451 * 3 - Illegal MS
1452 * 4 - Illegal ME
1453 * 5 - PLMN not allowed
1454 * 6 - Location area not allowed
1455 * 7 - Roaming not allowed
1456 * 8 - No Suitable Cells in this Location Area
1457 * 9 - Network failure
jsh29be25c2009-07-14 20:18:59 -07001458 * 10 - Persistent location update reject
Wink Savillec0114b32011-02-18 10:14:07 -08001459 * 11 - PLMN not allowed
1460 * 12 - Location area not allowed
1461 * 13 - Roaming not allowed in this Location Area
1462 * 15 - No Suitable Cells in this Location Area
1463 * 17 - Network Failure
1464 * 20 - MAC Failure
1465 * 21 - Sync Failure
1466 * 22 - Congestion
1467 * 23 - GSM Authentication unacceptable
1468 * 25 - Not Authorized for this CSG
1469 * 32 - Service option not supported
1470 * 33 - Requested service option not subscribed
1471 * 34 - Service option temporarily out of order
1472 * 38 - Call cannot be identified
1473 * 48-63 - Retry upon entry into a new cell
1474 * 95 - Semantically incorrect message
1475 * 96 - Invalid mandatory information
1476 * 97 - Message type non-existent or not implemented
1477 * 98 - Message not compatible with protocol state
1478 * 99 - Information element non-existent or not implemented
1479 * 100 - Conditional IE error
1480 * 101 - Message not compatible with protocol state
1481 * 111 - Protocol error, unspecified
jshca5e3472010-06-23 21:53:24 -07001482 * ((const char **)response)[14] is the Primary Scrambling Code of the current
1483 * cell as described in TS 25.331, in hexadecimal
1484 * format, or NULL if unknown or not registered
1485 * to a UMTS network.
Wink Saville1b5fd232009-04-22 14:50:00 -07001486 *
1487 * Please note that registration state 4 ("unknown") is treated
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001488 * as "out of service" in the Android telephony system
1489 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001490 * Registration state 3 can be returned if Location Update Reject
1491 * (with cause 17 - Network Failure) is received repeatedly from the network,
1492 * to facilitate "managed roaming"
1493 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001494 * Valid errors:
1495 * SUCCESS
1496 * RADIO_NOT_AVAILABLE
1497 * GENERIC_FAILURE
1498 */
Wink Savillec0114b32011-02-18 10:14:07 -08001499#define RIL_REQUEST_VOICE_REGISTRATION_STATE 20
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001500
1501/**
Wink Savillec0114b32011-02-18 10:14:07 -08001502 * RIL_REQUEST_DATA_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001503 *
Wink Savillec0114b32011-02-18 10:14:07 -08001504 * Request current DATA registration state
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001505 *
1506 * "data" is NULL
1507 * "response" is a "char **"
Li Zhe3a63fbc2009-08-04 13:14:34 +08001508 * ((const char **)response)[0] is registration state 0-5 from TS 27.007 10.1.20 AT+CGREG
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001509 * ((const char **)response)[1] is LAC if registered or NULL if not
1510 * ((const char **)response)[2] is CID if registered or NULL if not
Wink Saville43808972011-01-13 17:39:51 -08001511 * ((const char **)response)[3] indicates the available data radio technology,
1512 * valid values as defined by RIL_RadioTechnology.
Wink Savillec0114b32011-02-18 10:14:07 -08001513 * ((const char **)response)[4] if registration state is 3 (Registration
1514 * denied) this is an enumerated reason why
1515 * registration was denied. See 3GPP TS 24.008,
1516 * Annex G.6 "Additonal cause codes for GMM".
1517 * 7 == GPRS services not allowed
1518 * 8 == GPRS services and non-GPRS services not allowed
1519 * 9 == MS identity cannot be derived by the network
1520 * 10 == Implicitly detached
1521 * 14 == GPRS services not allowed in this PLMN
1522 * 16 == MSC temporarily not reachable
1523 * 40 == No PDP context activated
1524 * ((const char **)response)[5] The maximum number of simultaneous Data Calls that can be
1525 * established using RIL_REQUEST_SETUP_DATA_CALL.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001526 *
Wink Savilleae679532012-12-03 14:59:45 -08001527 * The values at offsets 6..10 are optional LTE location information in decimal.
1528 * If a value is unknown that value may be NULL. If all values are NULL,
1529 * none need to be present.
Wink Savilleea51a9d2012-09-15 07:54:06 -07001530 * ((const char **)response)[6] is TAC, a 16-bit Tracking Area Code.
1531 * ((const char **)response)[7] is CID, a 0-503 Physical Cell Identifier.
1532 * ((const char **)response)[8] is ECI, a 28-bit E-UTRAN Cell Identifier.
1533 * ((const char **)response)[9] is CSGID, a 27-bit Closed Subscriber Group Identity.
1534 * ((const char **)response)[10] is TADV, a 6-bit timing advance value.
1535 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001536 * LAC and CID are in hexadecimal format.
1537 * valid LAC are 0x0000 - 0xffff
1538 * valid CID are 0x00000000 - 0x0fffffff
Wink Saville7f856802009-06-09 10:23:37 -07001539 *
1540 * Please note that registration state 4 ("unknown") is treated
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001541 * as "out of service" in the Android telephony system
1542 *
1543 * Valid errors:
1544 * SUCCESS
1545 * RADIO_NOT_AVAILABLE
1546 * GENERIC_FAILURE
1547 */
Wink Savillec0114b32011-02-18 10:14:07 -08001548#define RIL_REQUEST_DATA_REGISTRATION_STATE 21
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001549
1550/**
1551 * RIL_REQUEST_OPERATOR
1552 *
1553 * Request current operator ONS or EONS
1554 *
1555 * "data" is NULL
1556 * "response" is a "const char **"
Wink Saville7f856802009-06-09 10:23:37 -07001557 * ((const char **)response)[0] is long alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001558 * or NULL if unregistered
1559 *
Wink Saville7f856802009-06-09 10:23:37 -07001560 * ((const char **)response)[1] is short alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001561 * or NULL if unregistered
1562 * ((const char **)response)[2] is 5 or 6 digit numeric code (MCC + MNC)
1563 * or NULL if unregistered
Wink Saville7f856802009-06-09 10:23:37 -07001564 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001565 * Valid errors:
1566 * SUCCESS
1567 * RADIO_NOT_AVAILABLE
1568 * GENERIC_FAILURE
1569 */
1570#define RIL_REQUEST_OPERATOR 22
1571
1572/**
1573 * RIL_REQUEST_RADIO_POWER
1574 *
1575 * Toggle radio on and off (for "airplane" mode)
Wink Saville29487ef2011-04-15 09:15:31 -07001576 * If the radio is is turned off/on the radio modem subsystem
1577 * is expected return to an initialized state. For instance,
1578 * any voice and data calls will be terminated and all associated
1579 * lists emptied.
1580 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001581 * "data" is int *
1582 * ((int *)data)[0] is > 0 for "Radio On"
1583 * ((int *)data)[0] is == 0 for "Radio Off"
1584 *
1585 * "response" is NULL
1586 *
1587 * Turn radio on if "on" > 0
1588 * Turn radio off if "on" == 0
1589 *
1590 * Valid errors:
1591 * SUCCESS
1592 * RADIO_NOT_AVAILABLE
1593 * GENERIC_FAILURE
1594 */
1595#define RIL_REQUEST_RADIO_POWER 23
1596
1597/**
1598 * RIL_REQUEST_DTMF
1599 *
1600 * Send a DTMF tone
1601 *
1602 * If the implementation is currently playing a tone requested via
1603 * RIL_REQUEST_DTMF_START, that tone should be cancelled and the new tone
1604 * should be played instead
1605 *
jsh602f80f2009-07-10 15:44:37 -07001606 * "data" is a char * containing a single character with one of 12 values: 0-9,*,#
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001607 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07001608 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001609 * FIXME should this block/mute microphone?
1610 * How does this interact with local DTMF feedback?
1611 *
1612 * Valid errors:
1613 * SUCCESS
1614 * RADIO_NOT_AVAILABLE
1615 * GENERIC_FAILURE
1616 *
1617 * See also: RIL_REQUEST_DTMF_STOP, RIL_REQUEST_DTMF_START
1618 *
1619 */
1620#define RIL_REQUEST_DTMF 24
1621
1622/**
1623 * RIL_REQUEST_SEND_SMS
Wink Saville7f856802009-06-09 10:23:37 -07001624 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001625 * Send an SMS message
1626 *
1627 * "data" is const char **
1628 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
1629 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
1630 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
1631 * less the SMSC address
1632 * TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
1633 *
1634 * "response" is a const RIL_SMS_Response *
1635 *
1636 * Based on the return error, caller decides to resend if sending sms
Wink Saville7f856802009-06-09 10:23:37 -07001637 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001638 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
1639 *
1640 * Valid errors:
1641 * SUCCESS
1642 * RADIO_NOT_AVAILABLE
1643 * SMS_SEND_FAIL_RETRY
jsh602f80f2009-07-10 15:44:37 -07001644 * FDN_CHECK_FAILURE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001645 * GENERIC_FAILURE
1646 *
1647 * FIXME how do we specify TP-Message-Reference if we need to resend?
1648 */
1649#define RIL_REQUEST_SEND_SMS 25
1650
1651
1652/**
1653 * RIL_REQUEST_SEND_SMS_EXPECT_MORE
Wink Saville7f856802009-06-09 10:23:37 -07001654 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001655 * Send an SMS message. Identical to RIL_REQUEST_SEND_SMS,
1656 * except that more messages are expected to be sent soon. If possible,
1657 * keep SMS relay protocol link open (eg TS 27.005 AT+CMMS command)
1658 *
1659 * "data" is const char **
1660 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
1661 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
1662 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
1663 * less the SMSC address
1664 * TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
1665 *
1666 * "response" is a const RIL_SMS_Response *
1667 *
1668 * Based on the return error, caller decides to resend if sending sms
Wink Saville7f856802009-06-09 10:23:37 -07001669 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001670 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
1671 *
1672 * Valid errors:
1673 * SUCCESS
1674 * RADIO_NOT_AVAILABLE
1675 * SMS_SEND_FAIL_RETRY
1676 * GENERIC_FAILURE
1677 *
1678 */
1679#define RIL_REQUEST_SEND_SMS_EXPECT_MORE 26
1680
1681
1682/**
Wink Savillef4c4d362009-04-02 01:37:03 -07001683 * RIL_REQUEST_SETUP_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001684 *
Wink Saville29487ef2011-04-15 09:15:31 -07001685 * Setup a packet data connection. If RIL_Data_Call_Response_v6.status
1686 * return success it is added to the list of data calls and a
1687 * RIL_UNSOL_DATA_CALL_LIST_CHANGED is sent. The call remains in the
1688 * list until RIL_REQUEST_DEACTIVATE_DATA_CALL is issued or the
1689 * radio is powered off/on. This list is returned by RIL_REQUEST_DATA_CALL_LIST
1690 * and RIL_UNSOL_DATA_CALL_LIST_CHANGED.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001691 *
Wink Saville43808972011-01-13 17:39:51 -08001692 * The RIL is expected to:
1693 * - Create one data call context.
1694 * - Create and configure a dedicated interface for the context
1695 * - The interface must be point to point.
1696 * - The interface is configured with one or more addresses and
1697 * is capable of sending and receiving packets. The prefix length
1698 * of the addresses must be /32 for IPv4 and /128 for IPv6.
1699 * - Must NOT change the linux routing table.
Wink Savillec0114b32011-02-18 10:14:07 -08001700 * - Support up to RIL_REQUEST_DATA_REGISTRATION_STATE response[5]
Wink Saville43808972011-01-13 17:39:51 -08001701 * number of simultaneous data call contexts.
1702 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001703 * "data" is a const char **
Wink Savillec0114b32011-02-18 10:14:07 -08001704 * ((const char **)data)[0] Radio technology to use: 0-CDMA, 1-GSM/UMTS, 2...
1705 * for values above 2 this is RIL_RadioTechnology + 2.
jsh602f80f2009-07-10 15:44:37 -07001706 * ((const char **)data)[1] is a RIL_DataProfile (support is optional)
Wink Saville7f856802009-06-09 10:23:37 -07001707 * ((const char **)data)[2] is the APN to connect to if radio technology is GSM/UMTS. This APN will
Wink Savillef4c4d362009-04-02 01:37:03 -07001708 * override the one in the profile. NULL indicates no APN overrride.
1709 * ((const char **)data)[3] is the username for APN, or NULL
1710 * ((const char **)data)[4] is the password for APN, or NULL
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -07001711 * ((const char **)data)[5] is the PAP / CHAP auth type. Values:
1712 * 0 => PAP and CHAP is never performed.
1713 * 1 => PAP may be performed; CHAP is never performed.
1714 * 2 => CHAP may be performed; PAP is never performed.
1715 * 3 => PAP / CHAP may be performed - baseband dependent.
Wink Savillec0114b32011-02-18 10:14:07 -08001716 * ((const char **)data)[6] is the connection type to request must be one of the
1717 * PDP_type values in TS 27.007 section 10.1.1.
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -07001718 * For example, "IP", "IPV6", "IPV4V6", or "PPP".
Wink Savillec0114b32011-02-18 10:14:07 -08001719 * ((const char **)data)[7] Optional connection property parameters, format to be defined.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001720 *
Wink Savillec0114b32011-02-18 10:14:07 -08001721 * "response" is a RIL_Data_Call_Response_v6
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001722 *
1723 * FIXME may need way to configure QoS settings
Wink Saville3d54e742009-05-18 18:00:44 -07001724 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001725 * Valid errors:
Wink Saville43808972011-01-13 17:39:51 -08001726 * SUCCESS should be returned on both success and failure of setup with
Wink Savillec0114b32011-02-18 10:14:07 -08001727 * the RIL_Data_Call_Response_v6.status containing the actual status.
1728 * For all other errors the RIL_Data_Call_Resonse_v6 is ignored.
Wink Saville43808972011-01-13 17:39:51 -08001729 *
1730 * Other errors could include:
1731 * RADIO_NOT_AVAILABLE, GENERIC_FAILURE, OP_NOT_ALLOWED_BEFORE_REG_TO_NW,
1732 * OP_NOT_ALLOWED_DURING_VOICE_CALL and REQUEST_NOT_SUPPORTED.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001733 *
Wink Savillef4c4d362009-04-02 01:37:03 -07001734 * See also: RIL_REQUEST_DEACTIVATE_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001735 */
Wink Savillef4c4d362009-04-02 01:37:03 -07001736#define RIL_REQUEST_SETUP_DATA_CALL 27
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001737
1738
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001739/**
1740 * RIL_REQUEST_SIM_IO
1741 *
1742 * Request SIM I/O operation.
1743 * This is similar to the TS 27.007 "restricted SIM" operation
1744 * where it assumes all of the EF selection will be done by the
1745 * callee.
1746 *
Wink Savillefd729372011-02-22 16:19:39 -08001747 * "data" is a const RIL_SIM_IO_v6 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001748 * Please note that RIL_SIM_IO has a "PIN2" field which may be NULL,
1749 * or may specify a PIN2 for operations that require a PIN2 (eg
1750 * updating FDN records)
1751 *
1752 * "response" is a const RIL_SIM_IO_Response *
1753 *
1754 * Arguments and responses that are unused for certain
1755 * values of "command" should be ignored or set to NULL
1756 *
1757 * Valid errors:
1758 * SUCCESS
1759 * RADIO_NOT_AVAILABLE
1760 * GENERIC_FAILURE
1761 * SIM_PIN2
1762 * SIM_PUK2
1763 */
1764#define RIL_REQUEST_SIM_IO 28
1765
1766/**
1767 * RIL_REQUEST_SEND_USSD
1768 *
1769 * Send a USSD message
1770 *
1771 * If a USSD session already exists, the message should be sent in the
1772 * context of that session. Otherwise, a new session should be created.
1773 *
1774 * The network reply should be reported via RIL_UNSOL_ON_USSD
1775 *
1776 * Only one USSD session may exist at a time, and the session is assumed
1777 * to exist until:
1778 * a) The android system invokes RIL_REQUEST_CANCEL_USSD
1779 * b) The implementation sends a RIL_UNSOL_ON_USSD with a type code
1780 * of "0" (USSD-Notify/no further action) or "2" (session terminated)
1781 *
1782 * "data" is a const char * containing the USSD request in UTF-8 format
1783 * "response" is NULL
1784 *
1785 * Valid errors:
1786 * SUCCESS
1787 * RADIO_NOT_AVAILABLE
jsh602f80f2009-07-10 15:44:37 -07001788 * FDN_CHECK_FAILURE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001789 * GENERIC_FAILURE
1790 *
1791 * See also: RIL_REQUEST_CANCEL_USSD, RIL_UNSOL_ON_USSD
1792 */
1793
1794#define RIL_REQUEST_SEND_USSD 29
1795
1796/**
1797 * RIL_REQUEST_CANCEL_USSD
Wink Saville7f856802009-06-09 10:23:37 -07001798 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001799 * Cancel the current USSD session if one exists
1800 *
1801 * "data" is null
1802 * "response" is NULL
1803 *
1804 * Valid errors:
1805 * SUCCESS
1806 * RADIO_NOT_AVAILABLE
Wink Saville7f856802009-06-09 10:23:37 -07001807 * GENERIC_FAILURE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001808 */
1809
1810#define RIL_REQUEST_CANCEL_USSD 30
1811
Wink Saville7f856802009-06-09 10:23:37 -07001812/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001813 * RIL_REQUEST_GET_CLIR
1814 *
1815 * Gets current CLIR status
1816 * "data" is NULL
1817 * "response" is int *
1818 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
1819 * ((int *)data)[1] is "m" parameter from TS 27.007 7.7
1820 *
1821 * Valid errors:
1822 * SUCCESS
1823 * RADIO_NOT_AVAILABLE
1824 * GENERIC_FAILURE
1825 */
1826#define RIL_REQUEST_GET_CLIR 31
1827
1828/**
1829 * RIL_REQUEST_SET_CLIR
1830 *
1831 * "data" is int *
1832 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
1833 *
1834 * "response" is NULL
1835 *
1836 * Valid errors:
1837 * SUCCESS
1838 * RADIO_NOT_AVAILABLE
1839 * GENERIC_FAILURE
1840 */
1841#define RIL_REQUEST_SET_CLIR 32
1842
1843/**
1844 * RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
1845 *
1846 * "data" is const RIL_CallForwardInfo *
1847 *
1848 * "response" is const RIL_CallForwardInfo **
1849 * "response" points to an array of RIL_CallForwardInfo *'s, one for
1850 * each distinct registered phone number.
1851 *
1852 * For example, if data is forwarded to +18005551212 and voice is forwarded
1853 * to +18005559999, then two separate RIL_CallForwardInfo's should be returned
Wink Saville7f856802009-06-09 10:23:37 -07001854 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001855 * If, however, both data and voice are forwarded to +18005551212, then
1856 * a single RIL_CallForwardInfo can be returned with the service class
1857 * set to "data + voice = 3")
1858 *
1859 * Valid errors:
1860 * SUCCESS
1861 * RADIO_NOT_AVAILABLE
1862 * GENERIC_FAILURE
1863 */
1864#define RIL_REQUEST_QUERY_CALL_FORWARD_STATUS 33
1865
1866
1867/**
1868 * RIL_REQUEST_SET_CALL_FORWARD
1869 *
1870 * Configure call forward rule
1871 *
1872 * "data" is const RIL_CallForwardInfo *
1873 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07001874 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001875 * Valid errors:
1876 * SUCCESS
1877 * RADIO_NOT_AVAILABLE
1878 * GENERIC_FAILURE
1879 */
1880#define RIL_REQUEST_SET_CALL_FORWARD 34
1881
1882
1883/**
1884 * RIL_REQUEST_QUERY_CALL_WAITING
1885 *
1886 * Query current call waiting state
1887 *
1888 * "data" is const int *
1889 * ((const int *)data)[0] is the TS 27.007 service class to query.
1890 * "response" is a const int *
1891 * ((const int *)response)[0] is 0 for "disabled" and 1 for "enabled"
1892 *
1893 * If ((const int *)response)[0] is = 1, then ((const int *)response)[1]
1894 * must follow, with the TS 27.007 service class bit vector of services
1895 * for which call waiting is enabled.
1896 *
Wink Saville7f856802009-06-09 10:23:37 -07001897 * For example, if ((const int *)response)[0] is 1 and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001898 * ((const int *)response)[1] is 3, then call waiting is enabled for data
1899 * and voice and disabled for everything else
1900 *
1901 * Valid errors:
1902 * SUCCESS
1903 * RADIO_NOT_AVAILABLE
1904 * GENERIC_FAILURE
1905 */
1906#define RIL_REQUEST_QUERY_CALL_WAITING 35
1907
1908
1909/**
1910 * RIL_REQUEST_SET_CALL_WAITING
1911 *
1912 * Configure current call waiting state
1913 *
1914 * "data" is const int *
1915 * ((const int *)data)[0] is 0 for "disabled" and 1 for "enabled"
1916 * ((const int *)data)[1] is the TS 27.007 service class bit vector of
1917 * services to modify
1918 * "response" is NULL
1919 *
1920 * Valid errors:
1921 * SUCCESS
1922 * RADIO_NOT_AVAILABLE
1923 * GENERIC_FAILURE
1924 */
1925#define RIL_REQUEST_SET_CALL_WAITING 36
1926
1927/**
1928 * RIL_REQUEST_SMS_ACKNOWLEDGE
1929 *
1930 * Acknowledge successful or failed receipt of SMS previously indicated
Wink Saville7f856802009-06-09 10:23:37 -07001931 * via RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001932 *
1933 * "data" is int *
jshb60444e2009-05-29 11:09:17 -07001934 * ((int *)data)[0] is 1 on successful receipt
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001935 * (basically, AT+CNMA=1 from TS 27.005
jshb60444e2009-05-29 11:09:17 -07001936 * is 0 on failed receipt
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001937 * (basically, AT+CNMA=2 from TS 27.005)
jshb60444e2009-05-29 11:09:17 -07001938 * ((int *)data)[1] if data[0] is 0, this contains the failure cause as defined
1939 * in TS 23.040, 9.2.3.22. Currently only 0xD3 (memory
1940 * capacity exceeded) and 0xFF (unspecified error) are
1941 * reported.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001942 *
1943 * "response" is NULL
1944 *
1945 * FIXME would like request that specified RP-ACK/RP-ERROR PDU
1946 *
1947 * Valid errors:
1948 * SUCCESS
1949 * RADIO_NOT_AVAILABLE
1950 * GENERIC_FAILURE
1951 */
1952#define RIL_REQUEST_SMS_ACKNOWLEDGE 37
1953
1954/**
Wink Savillef4c4d362009-04-02 01:37:03 -07001955 * RIL_REQUEST_GET_IMEI - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001956 *
1957 * Get the device IMEI, including check digit
1958 *
johnwangf8bc1672009-05-14 19:19:47 -07001959 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001960 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
1961 *
1962 * "data" is NULL
1963 * "response" is a const char * containing the IMEI
1964 *
1965 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001966 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001967 * RADIO_NOT_AVAILABLE (radio resetting)
1968 * GENERIC_FAILURE
1969 */
1970
1971#define RIL_REQUEST_GET_IMEI 38
1972
1973/**
Wink Savillef4c4d362009-04-02 01:37:03 -07001974 * RIL_REQUEST_GET_IMEISV - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001975 *
1976 * Get the device IMEISV, which should be two decimal digits
1977 *
johnwangf8bc1672009-05-14 19:19:47 -07001978 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001979 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
1980 *
1981 * "data" is NULL
1982 * "response" is a const char * containing the IMEISV
1983 *
1984 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001985 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001986 * RADIO_NOT_AVAILABLE (radio resetting)
1987 * GENERIC_FAILURE
1988 */
1989
1990#define RIL_REQUEST_GET_IMEISV 39
1991
1992
1993/**
1994 * RIL_REQUEST_ANSWER
1995 *
1996 * Answer incoming call
1997 *
1998 * Will not be called for WAITING calls.
1999 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE will be used in this case
2000 * instead
2001 *
2002 * "data" is NULL
2003 * "response" is NULL
2004 *
2005 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002006 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002007 * RADIO_NOT_AVAILABLE (radio resetting)
2008 * GENERIC_FAILURE
2009 */
2010
2011#define RIL_REQUEST_ANSWER 40
2012
2013/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002014 * RIL_REQUEST_DEACTIVATE_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002015 *
Wink Saville29487ef2011-04-15 09:15:31 -07002016 * Deactivate packet data connection and remove from the
2017 * data call list if SUCCESS is returned. Any other return
2018 * values should also try to remove the call from the list,
2019 * but that may not be possible. In any event a
2020 * RIL_REQUEST_RADIO_POWER off/on must clear the list. An
2021 * RIL_UNSOL_DATA_CALL_LIST_CHANGED is not expected to be
2022 * issued because of an RIL_REQUEST_DEACTIVATE_DATA_CALL.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002023 *
2024 * "data" is const char **
Wink Savillef4c4d362009-04-02 01:37:03 -07002025 * ((char**)data)[0] indicating CID
Kazuhiro Ondod86799a2010-12-02 13:22:35 -06002026 * ((char**)data)[1] indicating Disconnect Reason
2027 * 0 => No specific reason specified
2028 * 1 => Radio shutdown requested
Wink Saville7f856802009-06-09 10:23:37 -07002029 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002030 * "response" is NULL
2031 *
2032 * Valid errors:
2033 * SUCCESS
2034 * RADIO_NOT_AVAILABLE
2035 * GENERIC_FAILURE
2036 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002037 * See also: RIL_REQUEST_SETUP_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002038 */
Wink Savillef4c4d362009-04-02 01:37:03 -07002039#define RIL_REQUEST_DEACTIVATE_DATA_CALL 41
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002040
2041/**
2042 * RIL_REQUEST_QUERY_FACILITY_LOCK
2043 *
2044 * Query the status of a facility lock state
2045 *
2046 * "data" is const char **
Wink Saville7f856802009-06-09 10:23:37 -07002047 * ((const char **)data)[0] is the facility string code from TS 27.007 7.4
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002048 * (eg "AO" for BAOC, "SC" for SIM lock)
2049 * ((const char **)data)[1] is the password, or "" if not required
2050 * ((const char **)data)[2] is the TS 27.007 service class bit vector of
2051 * services to query
Wink Savillec0114b32011-02-18 10:14:07 -08002052 * ((const char **)data)[3] is AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
Wink Savillefd729372011-02-22 16:19:39 -08002053 * This is only applicable in the case of Fixed Dialing Numbers
2054 * (FDN) requests.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002055 *
2056 * "response" is an int *
2057 * ((const int *)response) 0 is the TS 27.007 service class bit vector of
Wink Saville7f856802009-06-09 10:23:37 -07002058 * services for which the specified barring facility
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002059 * is active. "0" means "disabled for all"
Wink Saville7f856802009-06-09 10:23:37 -07002060 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002061 *
2062 * Valid errors:
2063 * SUCCESS
2064 * RADIO_NOT_AVAILABLE
2065 * GENERIC_FAILURE
2066 *
2067 */
2068#define RIL_REQUEST_QUERY_FACILITY_LOCK 42
2069
2070/**
2071 * RIL_REQUEST_SET_FACILITY_LOCK
2072 *
2073 * Enable/disable one facility lock
2074 *
2075 * "data" is const char **
2076 *
2077 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
2078 * (eg "AO" for BAOC)
2079 * ((const char **)data)[1] = "0" for "unlock" and "1" for "lock"
2080 * ((const char **)data)[2] = password
2081 * ((const char **)data)[3] = string representation of decimal TS 27.007
2082 * service class bit vector. Eg, the string
2083 * "1" means "set this facility for voice services"
Wink Savillec0114b32011-02-18 10:14:07 -08002084 * ((const char **)data)[4] = AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value.
Wink Savillefd729372011-02-22 16:19:39 -08002085 * This is only applicable in the case of Fixed Dialing Numbers
2086 * (FDN) requests.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002087 *
jsh593c9102009-06-24 16:13:44 -07002088 * "response" is int *
2089 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002090 *
2091 * Valid errors:
2092 * SUCCESS
2093 * RADIO_NOT_AVAILABLE
2094 * GENERIC_FAILURE
2095 *
2096 */
2097#define RIL_REQUEST_SET_FACILITY_LOCK 43
2098
2099/**
2100 * RIL_REQUEST_CHANGE_BARRING_PASSWORD
2101 *
2102 * Change call barring facility password
2103 *
2104 * "data" is const char **
2105 *
2106 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
2107 * (eg "AO" for BAOC)
2108 * ((const char **)data)[1] = old password
2109 * ((const char **)data)[2] = new password
2110 *
Wink Saville7f856802009-06-09 10:23:37 -07002111 * "response" is NULL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002112 *
2113 * Valid errors:
2114 * SUCCESS
2115 * RADIO_NOT_AVAILABLE
2116 * GENERIC_FAILURE
2117 *
2118 */
2119#define RIL_REQUEST_CHANGE_BARRING_PASSWORD 44
2120
2121/**
2122 * RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE
2123 *
2124 * Query current network selectin mode
2125 *
2126 * "data" is NULL
2127 *
2128 * "response" is int *
2129 * ((const int *)response)[0] is
2130 * 0 for automatic selection
2131 * 1 for manual selection
2132 *
2133 * Valid errors:
2134 * SUCCESS
2135 * RADIO_NOT_AVAILABLE
2136 * GENERIC_FAILURE
2137 *
2138 */
2139#define RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE 45
2140
2141/**
2142 * RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC
2143 *
2144 * Specify that the network should be selected automatically
2145 *
2146 * "data" is NULL
2147 * "response" is NULL
2148 *
Wink Saville7f856802009-06-09 10:23:37 -07002149 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002150 * and registered
2151 *
2152 * Valid errors:
2153 * SUCCESS
2154 * RADIO_NOT_AVAILABLE
John Wang75534472010-04-20 15:11:42 -07002155 * ILLEGAL_SIM_OR_ME
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002156 * GENERIC_FAILURE
2157 *
John Wang75534472010-04-20 15:11:42 -07002158 * Note: Returns ILLEGAL_SIM_OR_ME when the failure is permanent and
2159 * no retries needed, such as illegal SIM or ME.
2160 * Returns GENERIC_FAILURE for all other causes that might be
2161 * fixed by retries.
2162 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002163 */
2164#define RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC 46
2165
2166/**
2167 * RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL
2168 *
2169 * Manually select a specified network.
2170 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002171 * "data" is const char * specifying MCCMNC of network to select (eg "310170")
2172 * "response" is NULL
2173 *
Wink Saville7f856802009-06-09 10:23:37 -07002174 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002175 * and registered
2176 *
2177 * Valid errors:
2178 * SUCCESS
2179 * RADIO_NOT_AVAILABLE
John Wang75534472010-04-20 15:11:42 -07002180 * ILLEGAL_SIM_OR_ME
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002181 * GENERIC_FAILURE
2182 *
John Wang75534472010-04-20 15:11:42 -07002183 * Note: Returns ILLEGAL_SIM_OR_ME when the failure is permanent and
2184 * no retries needed, such as illegal SIM or ME.
2185 * Returns GENERIC_FAILURE for all other causes that might be
2186 * fixed by retries.
2187 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002188 */
2189#define RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL 47
2190
2191/**
2192 * RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
2193 *
2194 * Scans for available networks
2195 *
2196 * "data" is NULL
2197 * "response" is const char ** that should be an array of n*4 strings, where
2198 * n is the number of available networks
2199 * For each available network:
2200 *
Wink Saville7f856802009-06-09 10:23:37 -07002201 * ((const char **)response)[n+0] is long alpha ONS or EONS
2202 * ((const char **)response)[n+1] is short alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002203 * ((const char **)response)[n+2] is 5 or 6 digit numeric code (MCC + MNC)
2204 * ((const char **)response)[n+3] is a string value of the status:
2205 * "unknown"
2206 * "available"
2207 * "current"
2208 * "forbidden"
2209 *
Wink Saville7f856802009-06-09 10:23:37 -07002210 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002211 * and registered
2212 *
2213 * Valid errors:
2214 * SUCCESS
2215 * RADIO_NOT_AVAILABLE
2216 * GENERIC_FAILURE
2217 *
2218 */
2219#define RIL_REQUEST_QUERY_AVAILABLE_NETWORKS 48
2220
2221/**
2222 * RIL_REQUEST_DTMF_START
2223 *
Wink Saville7f856802009-06-09 10:23:37 -07002224 * Start playing a DTMF tone. Continue playing DTMF tone until
2225 * RIL_REQUEST_DTMF_STOP is received
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002226 *
2227 * If a RIL_REQUEST_DTMF_START is received while a tone is currently playing,
2228 * it should cancel the previous tone and play the new one.
Wink Saville7f856802009-06-09 10:23:37 -07002229 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002230 * "data" is a char *
2231 * ((char *)data)[0] is a single character with one of 12 values: 0-9,*,#
2232 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002233 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002234 * Valid errors:
2235 * SUCCESS
2236 * RADIO_NOT_AVAILABLE
2237 * GENERIC_FAILURE
2238 *
2239 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_STOP
2240 */
2241#define RIL_REQUEST_DTMF_START 49
2242
2243/**
2244 * RIL_REQUEST_DTMF_STOP
2245 *
2246 * Stop playing a currently playing DTMF tone.
Wink Saville7f856802009-06-09 10:23:37 -07002247 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002248 * "data" is NULL
2249 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002250 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002251 * Valid errors:
2252 * SUCCESS
2253 * RADIO_NOT_AVAILABLE
2254 * GENERIC_FAILURE
2255 *
2256 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_START
2257 */
2258#define RIL_REQUEST_DTMF_STOP 50
2259
2260/**
2261 * RIL_REQUEST_BASEBAND_VERSION
2262 *
2263 * Return string value indicating baseband version, eg
2264 * response from AT+CGMR
Wink Saville7f856802009-06-09 10:23:37 -07002265 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002266 * "data" is NULL
2267 * "response" is const char * containing version string for log reporting
Wink Saville7f856802009-06-09 10:23:37 -07002268 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002269 * Valid errors:
2270 * SUCCESS
2271 * RADIO_NOT_AVAILABLE
2272 * GENERIC_FAILURE
2273 *
2274 */
2275#define RIL_REQUEST_BASEBAND_VERSION 51
2276
2277/**
2278 * RIL_REQUEST_SEPARATE_CONNECTION
2279 *
2280 * Separate a party from a multiparty call placing the multiparty call
Wink Saville7f856802009-06-09 10:23:37 -07002281 * (less the specified party) on hold and leaving the specified party
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002282 * as the only other member of the current (active) call
2283 *
2284 * Like AT+CHLD=2x
2285 *
2286 * See TS 22.084 1.3.8.2 (iii)
2287 * TS 22.030 6.5.5 "Entering "2X followed by send"
2288 * TS 27.007 "AT+CHLD=2x"
Wink Saville7f856802009-06-09 10:23:37 -07002289 *
2290 * "data" is an int *
Wink Savillef4c4d362009-04-02 01:37:03 -07002291 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above) "response" is NULL
2292 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002293 * "response" is NULL
2294 *
2295 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002296 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002297 * RADIO_NOT_AVAILABLE (radio resetting)
2298 * GENERIC_FAILURE
2299 */
2300#define RIL_REQUEST_SEPARATE_CONNECTION 52
2301
2302
2303/**
2304 * RIL_REQUEST_SET_MUTE
2305 *
2306 * Turn on or off uplink (microphone) mute.
2307 *
2308 * Will only be sent while voice call is active.
2309 * Will always be reset to "disable mute" when a new voice call is initiated
2310 *
2311 * "data" is an int *
2312 * (int *)data)[0] is 1 for "enable mute" and 0 for "disable mute"
2313 *
2314 * "response" is NULL
2315 *
2316 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002317 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002318 * RADIO_NOT_AVAILABLE (radio resetting)
2319 * GENERIC_FAILURE
2320 */
2321
2322#define RIL_REQUEST_SET_MUTE 53
2323
2324/**
2325 * RIL_REQUEST_GET_MUTE
2326 *
2327 * Queries the current state of the uplink mute setting
2328 *
2329 * "data" is NULL
2330 * "response" is an int *
2331 * (int *)response)[0] is 1 for "mute enabled" and 0 for "mute disabled"
2332 *
2333 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002334 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002335 * RADIO_NOT_AVAILABLE (radio resetting)
2336 * GENERIC_FAILURE
2337 */
2338
2339#define RIL_REQUEST_GET_MUTE 54
2340
2341/**
2342 * RIL_REQUEST_QUERY_CLIP
2343 *
2344 * Queries the status of the CLIP supplementary service
2345 *
2346 * (for MMI code "*#30#")
2347 *
2348 * "data" is NULL
2349 * "response" is an int *
Wink Saville7f856802009-06-09 10:23:37 -07002350 * (int *)response)[0] is 1 for "CLIP provisioned"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002351 * and 0 for "CLIP not provisioned"
Wink Saville7f856802009-06-09 10:23:37 -07002352 * and 2 for "unknown, e.g. no network etc"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002353 *
2354 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002355 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002356 * RADIO_NOT_AVAILABLE (radio resetting)
2357 * GENERIC_FAILURE
2358 */
2359
2360#define RIL_REQUEST_QUERY_CLIP 55
2361
2362/**
Wink Savillec0114b32011-02-18 10:14:07 -08002363 * RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE - Deprecated use the status
2364 * field in RIL_Data_Call_Response_v6.
Wink Saville7f856802009-06-09 10:23:37 -07002365 *
2366 * Requests the failure cause code for the most recently failed PDP
Wink Savillef4c4d362009-04-02 01:37:03 -07002367 * context or CDMA data connection active
2368 * replaces RIL_REQUEST_LAST_PDP_FAIL_CAUSE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002369 *
2370 * "data" is NULL
2371 *
2372 * "response" is a "int *"
2373 * ((int *)response)[0] is an integer cause code defined in TS 24.008
2374 * section 6.1.3.1.3 or close approximation
2375 *
2376 * If the implementation does not have access to the exact cause codes,
Wink Saville7f856802009-06-09 10:23:37 -07002377 * then it should return one of the values listed in
Wink Saville43808972011-01-13 17:39:51 -08002378 * RIL_DataCallFailCause, as the UI layer needs to distinguish these
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002379 * cases for error notification
2380 * and potential retries.
2381 *
2382 * Valid errors:
2383 * SUCCESS
2384 * RADIO_NOT_AVAILABLE
2385 * GENERIC_FAILURE
2386 *
2387 * See also: RIL_REQUEST_LAST_CALL_FAIL_CAUSE
Wink Savillec0114b32011-02-18 10:14:07 -08002388 *
2389 * Deprecated use the status field in RIL_Data_Call_Response_v6.
Wink Saville7f856802009-06-09 10:23:37 -07002390 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002391
Wink Savillef4c4d362009-04-02 01:37:03 -07002392#define RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE 56
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002393
2394/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002395 * RIL_REQUEST_DATA_CALL_LIST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002396 *
Wink Saville29487ef2011-04-15 09:15:31 -07002397 * Returns the data call list. An entry is added when a
2398 * RIL_REQUEST_SETUP_DATA_CALL is issued and removed on a
2399 * RIL_REQUEST_DEACTIVATE_DATA_CALL. The list is emptied
2400 * when RIL_REQUEST_RADIO_POWER off/on is issued.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002401 *
2402 * "data" is NULL
Wink Savillec0114b32011-02-18 10:14:07 -08002403 * "response" is an array of RIL_Data_Call_Response_v6
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002404 *
2405 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002406 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002407 * RADIO_NOT_AVAILABLE (radio resetting)
2408 * GENERIC_FAILURE
Wink Saville29487ef2011-04-15 09:15:31 -07002409 *
2410 * See also: RIL_UNSOL_DATA_CALL_LIST_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002411 */
2412
Wink Savillef4c4d362009-04-02 01:37:03 -07002413#define RIL_REQUEST_DATA_CALL_LIST 57
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002414
2415/**
johnwangf8bc1672009-05-14 19:19:47 -07002416 * RIL_REQUEST_RESET_RADIO - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002417 *
2418 * Request a radio reset. The RIL implementation may postpone
2419 * the reset until after this request is responded to if the baseband
2420 * is presently busy.
2421 *
johnwangf8bc1672009-05-14 19:19:47 -07002422 * The request is DEPRECATED, use RIL_REQUEST_RADIO_POWER
2423 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002424 * "data" is NULL
2425 * "response" is NULL
2426 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002427 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002428 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002429 * RADIO_NOT_AVAILABLE (radio resetting)
2430 * GENERIC_FAILURE
johnwangf8bc1672009-05-14 19:19:47 -07002431 * REQUEST_NOT_SUPPORTED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002432 */
2433
2434#define RIL_REQUEST_RESET_RADIO 58
2435
2436/**
2437 * RIL_REQUEST_OEM_HOOK_RAW
2438 *
2439 * This request reserved for OEM-specific uses. It passes raw byte arrays
2440 * back and forth.
2441 *
Wink Saville7f856802009-06-09 10:23:37 -07002442 * It can be invoked on the Java side from
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002443 * com.android.internal.telephony.Phone.invokeOemRilRequestRaw()
2444 *
2445 * "data" is a char * of bytes copied from the byte[] data argument in java
2446 * "response" is a char * of bytes that will returned via the
Wink Saville7f856802009-06-09 10:23:37 -07002447 * caller's "response" Message here:
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002448 * (byte[])(((AsyncResult)response.obj).result)
2449 *
Wink Saville7f856802009-06-09 10:23:37 -07002450 * An error response here will result in
2451 * (((AsyncResult)response.obj).result) == null and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002452 * (((AsyncResult)response.obj).exception) being an instance of
2453 * com.android.internal.telephony.gsm.CommandException
2454 *
2455 * Valid errors:
2456 * All
2457 */
2458
2459#define RIL_REQUEST_OEM_HOOK_RAW 59
2460
2461/**
2462 * RIL_REQUEST_OEM_HOOK_STRINGS
2463 *
2464 * This request reserved for OEM-specific uses. It passes strings
2465 * back and forth.
2466 *
Wink Saville7f856802009-06-09 10:23:37 -07002467 * It can be invoked on the Java side from
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002468 * com.android.internal.telephony.Phone.invokeOemRilRequestStrings()
2469 *
2470 * "data" is a const char **, representing an array of null-terminated UTF-8
2471 * strings copied from the "String[] strings" argument to
2472 * invokeOemRilRequestStrings()
2473 *
2474 * "response" is a const char **, representing an array of null-terminated UTF-8
2475 * stings that will be returned via the caller's response message here:
2476 *
2477 * (String[])(((AsyncResult)response.obj).result)
2478 *
Wink Saville7f856802009-06-09 10:23:37 -07002479 * An error response here will result in
2480 * (((AsyncResult)response.obj).result) == null and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002481 * (((AsyncResult)response.obj).exception) being an instance of
2482 * com.android.internal.telephony.gsm.CommandException
2483 *
2484 * Valid errors:
2485 * All
2486 */
2487
2488#define RIL_REQUEST_OEM_HOOK_STRINGS 60
2489
2490/**
2491 * RIL_REQUEST_SCREEN_STATE
2492 *
2493 * Indicates the current state of the screen. When the screen is off, the
2494 * RIL should notify the baseband to suppress certain notifications (eg,
jsh43265612009-09-29 17:46:11 -07002495 * signal strength and changes in LAC/CID or BID/SID/NID/latitude/longitude)
2496 * in an effort to conserve power. These notifications should resume when the
2497 * screen is on.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002498 *
2499 * "data" is int *
2500 * ((int *)data)[0] is == 1 for "Screen On"
2501 * ((int *)data)[0] is == 0 for "Screen Off"
2502 *
2503 * "response" is NULL
2504 *
2505 * Valid errors:
2506 * SUCCESS
2507 * GENERIC_FAILURE
2508 */
2509#define RIL_REQUEST_SCREEN_STATE 61
2510
2511
2512/**
2513 * RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION
2514 *
2515 * Enables/disables supplementary service related notifications
2516 * from the network.
2517 *
2518 * Notifications are reported via RIL_UNSOL_SUPP_SVC_NOTIFICATION.
2519 *
2520 * "data" is int *
2521 * ((int *)data)[0] is == 1 for notifications enabled
2522 * ((int *)data)[0] is == 0 for notifications disabled
2523 *
2524 * "response" is NULL
2525 *
2526 * Valid errors:
2527 * SUCCESS
2528 * RADIO_NOT_AVAILABLE
2529 * GENERIC_FAILURE
2530 *
2531 * See also: RIL_UNSOL_SUPP_SVC_NOTIFICATION.
2532 */
2533#define RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION 62
2534
2535/**
2536 * RIL_REQUEST_WRITE_SMS_TO_SIM
2537 *
2538 * Stores a SMS message to SIM memory.
2539 *
2540 * "data" is RIL_SMS_WriteArgs *
2541 *
2542 * "response" is int *
2543 * ((const int *)response)[0] is the record index where the message is stored.
2544 *
2545 * Valid errors:
2546 * SUCCESS
2547 * GENERIC_FAILURE
2548 *
2549 */
2550#define RIL_REQUEST_WRITE_SMS_TO_SIM 63
2551
2552/**
2553 * RIL_REQUEST_DELETE_SMS_ON_SIM
2554 *
2555 * Deletes a SMS message from SIM memory.
2556 *
2557 * "data" is int *
2558 * ((int *)data)[0] is the record index of the message to delete.
2559 *
2560 * "response" is NULL
2561 *
2562 * Valid errors:
2563 * SUCCESS
2564 * GENERIC_FAILURE
2565 *
2566 */
2567#define RIL_REQUEST_DELETE_SMS_ON_SIM 64
2568
2569/**
2570 * RIL_REQUEST_SET_BAND_MODE
2571 *
2572 * Assign a specified band for RF configuration.
2573 *
2574 * "data" is int *
2575 * ((int *)data)[0] is == 0 for "unspecified" (selected by baseband automatically)
2576 * ((int *)data)[0] is == 1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
2577 * ((int *)data)[0] is == 2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
2578 * ((int *)data)[0] is == 3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
2579 * ((int *)data)[0] is == 4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
2580 * ((int *)data)[0] is == 5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
Wink Savillef4c4d362009-04-02 01:37:03 -07002581 * ((int *)data)[0] is == 6 for "Cellular (800-MHz Band)"
2582 * ((int *)data)[0] is == 7 for "PCS (1900-MHz Band)"
2583 * ((int *)data)[0] is == 8 for "Band Class 3 (JTACS Band)"
2584 * ((int *)data)[0] is == 9 for "Band Class 4 (Korean PCS Band)"
2585 * ((int *)data)[0] is == 10 for "Band Class 5 (450-MHz Band)"
2586 * ((int *)data)[0] is == 11 for "Band Class 6 (2-GMHz IMT2000 Band)"
2587 * ((int *)data)[0] is == 12 for "Band Class 7 (Upper 700-MHz Band)"
2588 * ((int *)data)[0] is == 13 for "Band Class 8 (1800-MHz Band)"
2589 * ((int *)data)[0] is == 14 for "Band Class 9 (900-MHz Band)"
2590 * ((int *)data)[0] is == 15 for "Band Class 10 (Secondary 800-MHz Band)"
2591 * ((int *)data)[0] is == 16 for "Band Class 11 (400-MHz European PAMR Band)"
2592 * ((int *)data)[0] is == 17 for "Band Class 15 (AWS Band)"
2593 * ((int *)data)[0] is == 18 for "Band Class 16 (US 2.5-GHz Band)"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002594 *
2595 * "response" is NULL
2596 *
2597 * Valid errors:
2598 * SUCCESS
2599 * RADIO_NOT_AVAILABLE
2600 * GENERIC_FAILURE
2601 */
2602#define RIL_REQUEST_SET_BAND_MODE 65
2603
2604/**
2605 * RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE
2606 *
2607 * Query the list of band mode supported by RF.
2608 *
2609 * "data" is NULL
2610 *
2611 * "response" is int *
2612 * "response" points to an array of int's, the int[0] is the size of array, reset is one for
2613 * each available band mode.
2614 *
2615 * 0 for "unspecified" (selected by baseband automatically)
2616 * 1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
2617 * 2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
2618 * 3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
2619 * 4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
2620 * 5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
Wink Savillef4c4d362009-04-02 01:37:03 -07002621 * 6 for "Cellular (800-MHz Band)"
2622 * 7 for "PCS (1900-MHz Band)"
2623 * 8 for "Band Class 3 (JTACS Band)"
2624 * 9 for "Band Class 4 (Korean PCS Band)"
2625 * 10 for "Band Class 5 (450-MHz Band)"
2626 * 11 for "Band Class 6 (2-GMHz IMT2000 Band)"
2627 * 12 for "Band Class 7 (Upper 700-MHz Band)"
2628 * 13 for "Band Class 8 (1800-MHz Band)"
2629 * 14 for "Band Class 9 (900-MHz Band)"
2630 * 15 for "Band Class 10 (Secondary 800-MHz Band)"
2631 * 16 for "Band Class 11 (400-MHz European PAMR Band)"
2632 * 17 for "Band Class 15 (AWS Band)"
2633 * 18 for "Band Class 16 (US 2.5-GHz Band)"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002634 *
2635 * Valid errors:
2636 * SUCCESS
2637 * RADIO_NOT_AVAILABLE
2638 * GENERIC_FAILURE
2639 *
2640 * See also: RIL_REQUEST_SET_BAND_MODE
2641 */
2642#define RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE 66
2643
2644/**
2645 * RIL_REQUEST_STK_GET_PROFILE
2646 *
2647 * Requests the profile of SIM tool kit.
2648 * The profile indicates the SAT/USAT features supported by ME.
2649 * The SAT/USAT features refer to 3GPP TS 11.14 and 3GPP TS 31.111
2650 *
2651 * "data" is NULL
2652 *
2653 * "response" is a const char * containing SAT/USAT profile
2654 * in hexadecimal format string starting with first byte of terminal profile
2655 *
2656 * Valid errors:
2657 * RIL_E_SUCCESS
2658 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2659 * RIL_E_GENERIC_FAILURE
2660 */
2661#define RIL_REQUEST_STK_GET_PROFILE 67
2662
2663/**
2664 * RIL_REQUEST_STK_SET_PROFILE
2665 *
2666 * Download the STK terminal profile as part of SIM initialization
2667 * procedure
2668 *
2669 * "data" is a const char * containing SAT/USAT profile
2670 * in hexadecimal format string starting with first byte of terminal profile
2671 *
2672 * "response" is NULL
2673 *
2674 * Valid errors:
2675 * RIL_E_SUCCESS
2676 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2677 * RIL_E_GENERIC_FAILURE
2678 */
2679#define RIL_REQUEST_STK_SET_PROFILE 68
2680
2681/**
2682 * RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND
2683 *
2684 * Requests to send a SAT/USAT envelope command to SIM.
2685 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111
2686 *
2687 * "data" is a const char * containing SAT/USAT command
2688 * in hexadecimal format string starting with command tag
2689 *
2690 * "response" is a const char * containing SAT/USAT response
2691 * in hexadecimal format string starting with first byte of response
2692 * (May be NULL)
2693 *
2694 * Valid errors:
2695 * RIL_E_SUCCESS
2696 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2697 * RIL_E_GENERIC_FAILURE
2698 */
2699#define RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND 69
2700
2701/**
2702 * RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE
2703 *
2704 * Requests to send a terminal response to SIM for a received
2705 * proactive command
2706 *
2707 * "data" is a const char * containing SAT/USAT response
2708 * in hexadecimal format string starting with first byte of response data
2709 *
2710 * "response" is NULL
2711 *
2712 * Valid errors:
2713 * RIL_E_SUCCESS
2714 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2715 * RIL_E_GENERIC_FAILURE
2716 */
2717#define RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE 70
2718
2719/**
2720 * RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM
2721 *
2722 * When STK application gets RIL_UNSOL_STK_CALL_SETUP, the call actually has
2723 * been initialized by ME already. (We could see the call has been in the 'call
2724 * list') So, STK application needs to accept/reject the call according as user
2725 * operations.
2726 *
2727 * "data" is int *
2728 * ((int *)data)[0] is > 0 for "accept" the call setup
2729 * ((int *)data)[0] is == 0 for "reject" the call setup
2730 *
2731 * "response" is NULL
2732 *
2733 * Valid errors:
2734 * RIL_E_SUCCESS
2735 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2736 * RIL_E_GENERIC_FAILURE
2737 */
2738#define RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM 71
2739
2740/**
2741 * RIL_REQUEST_EXPLICIT_CALL_TRANSFER
2742 *
2743 * Connects the two calls and disconnects the subscriber from both calls.
Wink Saville7f856802009-06-09 10:23:37 -07002744 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002745 * "data" is NULL
2746 * "response" is NULL
2747 *
2748 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002749 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002750 * RADIO_NOT_AVAILABLE (radio resetting)
2751 * GENERIC_FAILURE
2752 */
2753#define RIL_REQUEST_EXPLICIT_CALL_TRANSFER 72
2754
2755/**
2756 * RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
2757 *
2758 * Requests to set the preferred network type for searching and registering
2759 * (CS/PS domain, RAT, and operation mode)
2760 *
Wink Savillec0114b32011-02-18 10:14:07 -08002761 * "data" is int * which is RIL_PreferredNetworkType
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002762 *
2763 * "response" is NULL
2764 *
2765 * Valid errors:
Wink Savillef4c4d362009-04-02 01:37:03 -07002766 * SUCCESS
2767 * RADIO_NOT_AVAILABLE (radio resetting)
2768 * GENERIC_FAILURE
2769 * MODE_NOT_SUPPORTED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002770 */
2771#define RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE 73
2772
2773/**
2774 * RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE
2775 *
2776 * Query the preferred network type (CS/PS domain, RAT, and operation mode)
2777 * for searching and registering
2778 *
2779 * "data" is NULL
2780 *
2781 * "response" is int *
Wink Savillec0114b32011-02-18 10:14:07 -08002782 * ((int *)reponse)[0] is == RIL_PreferredNetworkType
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002783 *
2784 * Valid errors:
2785 * SUCCESS
2786 * RADIO_NOT_AVAILABLE
2787 * GENERIC_FAILURE
2788 *
2789 * See also: RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
2790 */
2791#define RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE 74
2792
2793/**
2794 * RIL_REQUEST_NEIGHBORING_CELL_IDS
2795 *
2796 * Request neighboring cell id in GSM network
2797 *
2798 * "data" is NULL
2799 * "response" must be a " const RIL_NeighboringCell** "
2800 *
2801 * Valid errors:
2802 * SUCCESS
2803 * RADIO_NOT_AVAILABLE
2804 * GENERIC_FAILURE
2805 */
2806#define RIL_REQUEST_GET_NEIGHBORING_CELL_IDS 75
2807
2808/**
2809 * RIL_REQUEST_SET_LOCATION_UPDATES
Wink Saville3d54e742009-05-18 18:00:44 -07002810 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002811 * Enables/disables network state change notifications due to changes in
jsh43265612009-09-29 17:46:11 -07002812 * LAC and/or CID (for GSM) or BID/SID/NID/latitude/longitude (for CDMA).
2813 * Basically +CREG=2 vs. +CREG=1 (TS 27.007).
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002814 *
2815 * Note: The RIL implementation should default to "updates enabled"
2816 * when the screen is on and "updates disabled" when the screen is off.
2817 *
2818 * "data" is int *
2819 * ((int *)data)[0] is == 1 for updates enabled (+CREG=2)
2820 * ((int *)data)[0] is == 0 for updates disabled (+CREG=1)
2821 *
2822 * "response" is NULL
Wink Saville3d54e742009-05-18 18:00:44 -07002823 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002824 * Valid errors:
2825 * SUCCESS
2826 * RADIO_NOT_AVAILABLE
2827 * GENERIC_FAILURE
2828 *
2829 * See also: RIL_REQUEST_SCREEN_STATE, RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED
2830 */
2831#define RIL_REQUEST_SET_LOCATION_UPDATES 76
2832
Wink Savillef4c4d362009-04-02 01:37:03 -07002833/**
Wink Savillec0114b32011-02-18 10:14:07 -08002834 * RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE
Wink Saville7f856802009-06-09 10:23:37 -07002835 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002836 * Request to set the location where the CDMA subscription shall
2837 * be retrieved
2838 *
2839 * "data" is int *
Wink Savillec0114b32011-02-18 10:14:07 -08002840 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
Wink Savillef4c4d362009-04-02 01:37:03 -07002841 *
2842 * "response" is NULL
2843 *
2844 * Valid errors:
2845 * SUCCESS
2846 * RADIO_NOT_AVAILABLE
2847 * GENERIC_FAILURE
2848 * SIM_ABSENT
2849 * SUBSCRIPTION_NOT_AVAILABLE
Wink Savillec0114b32011-02-18 10:14:07 -08002850 *
2851 * See also: RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE
Wink Savillef4c4d362009-04-02 01:37:03 -07002852 */
Wink Savillec0114b32011-02-18 10:14:07 -08002853#define RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE 77
Wink Savillef4c4d362009-04-02 01:37:03 -07002854
2855/**
2856 * RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE
Wink Saville7f856802009-06-09 10:23:37 -07002857 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002858 * Request to set the roaming preferences in CDMA
2859 *
2860 * "data" is int *
2861 * ((int *)data)[0] is == 0 for Home Networks only, as defined in PRL
2862 * ((int *)data)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
2863 * ((int *)data)[0] is == 2 for Roaming on Any Network, as defined in the PRL
Wink Saville7f856802009-06-09 10:23:37 -07002864 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002865 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002866 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002867 * Valid errors:
2868 * SUCCESS
2869 * RADIO_NOT_AVAILABLE
2870 * GENERIC_FAILURE
2871 */
2872#define RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE 78
2873
2874/**
2875 * RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE
Wink Saville7f856802009-06-09 10:23:37 -07002876 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002877 * Request the actual setting of the roaming preferences in CDMA in the modem
2878 *
2879 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002880 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002881 * "response" is int *
2882 * ((int *)response)[0] is == 0 for Home Networks only, as defined in PRL
2883 * ((int *)response)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
2884 * ((int *)response)[0] is == 2 for Roaming on Any Network, as defined in the PRL
Wink Saville7f856802009-06-09 10:23:37 -07002885 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002886 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002887 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002888 * Valid errors:
2889 * SUCCESS
2890 * RADIO_NOT_AVAILABLE
2891 * GENERIC_FAILURE
2892 */
2893#define RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE 79
2894
2895/**
2896 * RIL_REQUEST_SET_TTY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07002897 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002898 * Request to set the TTY mode
2899 *
2900 * "data" is int *
2901 * ((int *)data)[0] is == 0 for TTY off
Wink Saville1b5fd232009-04-22 14:50:00 -07002902 * ((int *)data)[0] is == 1 for TTY Full
2903 * ((int *)data)[0] is == 2 for TTY HCO (hearing carryover)
2904 * ((int *)data)[0] is == 3 for TTY VCO (voice carryover)
Wink Saville7f856802009-06-09 10:23:37 -07002905 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002906 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002907 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002908 * Valid errors:
2909 * SUCCESS
2910 * RADIO_NOT_AVAILABLE
2911 * GENERIC_FAILURE
2912 */
2913#define RIL_REQUEST_SET_TTY_MODE 80
2914
2915/**
2916 * RIL_REQUEST_QUERY_TTY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07002917 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002918 * Request the setting of TTY mode
2919 *
2920 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002921 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002922 * "response" is int *
2923 * ((int *)response)[0] is == 0 for TTY off
Wink Saville1b5fd232009-04-22 14:50:00 -07002924 * ((int *)response)[0] is == 1 for TTY Full
2925 * ((int *)response)[0] is == 2 for TTY HCO (hearing carryover)
2926 * ((int *)response)[0] is == 3 for TTY VCO (voice carryover)
Wink Savillef4c4d362009-04-02 01:37:03 -07002927 *
2928 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002929 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002930 * Valid errors:
2931 * SUCCESS
2932 * RADIO_NOT_AVAILABLE
2933 * GENERIC_FAILURE
2934 */
2935#define RIL_REQUEST_QUERY_TTY_MODE 81
2936
2937/**
2938 * RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE
2939 *
2940 * Request to set the preferred voice privacy mode used in voice
2941 * scrambling
2942 *
2943 * "data" is int *
2944 * ((int *)data)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
2945 * ((int *)data)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
Wink Saville7f856802009-06-09 10:23:37 -07002946 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002947 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002948 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002949 * Valid errors:
2950 * SUCCESS
2951 * RADIO_NOT_AVAILABLE
2952 * GENERIC_FAILURE
2953 */
2954#define RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE 82
2955
2956/**
2957 * RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07002958 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002959 * Request the setting of preferred voice privacy mode
2960 *
2961 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002962 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002963 * "response" is int *
2964 * ((int *)response)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
2965 * ((int *)response)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
Wink Saville7f856802009-06-09 10:23:37 -07002966 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002967 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002968 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002969 * Valid errors:
2970 * SUCCESS
2971 * RADIO_NOT_AVAILABLE
2972 * GENERIC_FAILURE
2973 */
2974#define RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE 83
2975
2976/**
2977 * RIL_REQUEST_CDMA_FLASH
2978 *
2979 * Send FLASH
2980 *
2981 * "data" is const char *
2982 * ((const char *)data)[0] is a FLASH string
Wink Saville7f856802009-06-09 10:23:37 -07002983 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002984 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002985 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002986 * Valid errors:
2987 * SUCCESS
2988 * RADIO_NOT_AVAILABLE
2989 * GENERIC_FAILURE
2990 *
2991 */
2992#define RIL_REQUEST_CDMA_FLASH 84
2993
2994/**
2995 * RIL_REQUEST_CDMA_BURST_DTMF
2996 *
2997 * Send DTMF string
2998 *
jsh602f80f2009-07-10 15:44:37 -07002999 * "data" is const char **
3000 * ((const char **)data)[0] is a DTMF string
3001 * ((const char **)data)[1] is the DTMF ON length in milliseconds, or 0 to use
3002 * default
3003 * ((const char **)data)[2] is the DTMF OFF length in milliseconds, or 0 to use
3004 * default
Wink Saville7f856802009-06-09 10:23:37 -07003005 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003006 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003007 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003008 * Valid errors:
3009 * SUCCESS
3010 * RADIO_NOT_AVAILABLE
3011 * GENERIC_FAILURE
3012 *
3013 */
3014#define RIL_REQUEST_CDMA_BURST_DTMF 85
3015
3016/**
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003017 * RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY
Wink Savillef4c4d362009-04-02 01:37:03 -07003018 *
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003019 * Takes a 26 digit string (20 digit AKEY + 6 digit checksum).
3020 * If the checksum is valid the 20 digit AKEY is written to NV,
3021 * replacing the existing AKEY no matter what it was before.
Wink Savillef4c4d362009-04-02 01:37:03 -07003022 *
3023 * "data" is const char *
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003024 * ((const char *)data)[0] is a 26 digit string (ASCII digits '0'-'9')
3025 * where the last 6 digits are a checksum of the
3026 * first 20, as specified in TR45.AHAG
3027 * "Common Cryptographic Algorithms, Revision D.1
3028 * Section 2.2"
Wink Saville7f856802009-06-09 10:23:37 -07003029 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003030 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003031 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003032 * Valid errors:
3033 * SUCCESS
3034 * RADIO_NOT_AVAILABLE
3035 * GENERIC_FAILURE
3036 *
3037 */
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003038#define RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY 86
Wink Savillef4c4d362009-04-02 01:37:03 -07003039
3040/**
3041 * RIL_REQUEST_CDMA_SEND_SMS
3042 *
3043 * Send a CDMA SMS message
3044 *
3045 * "data" is const RIL_CDMA_SMS_Message *
Wink Saville7f856802009-06-09 10:23:37 -07003046 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003047 * "response" is a const RIL_SMS_Response *
Wink Saville7f856802009-06-09 10:23:37 -07003048 *
johnwangbfb151b2009-09-11 15:20:38 -07003049 * Based on the return error, caller decides to resend if sending sms
3050 * fails. The CDMA error class is derived as follows,
3051 * SUCCESS is error class 0 (no error)
3052 * SMS_SEND_FAIL_RETRY is error class 2 (temporary failure)
3053 * and GENERIC_FAILURE is error class 3 (permanent and no retry)
3054 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003055 * Valid errors:
3056 * SUCCESS
3057 * RADIO_NOT_AVAILABLE
Wink Saville1b5fd232009-04-22 14:50:00 -07003058 * SMS_SEND_FAIL_RETRY
Wink Savillef4c4d362009-04-02 01:37:03 -07003059 * GENERIC_FAILURE
3060 *
3061 */
3062#define RIL_REQUEST_CDMA_SEND_SMS 87
3063
3064/**
3065 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
3066 *
3067 * Acknowledge the success or failure in the receipt of SMS
3068 * previously indicated via RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
3069 *
3070 * "data" is const RIL_CDMA_SMS_Ack *
Wink Saville7f856802009-06-09 10:23:37 -07003071 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003072 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003073 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003074 * Valid errors:
3075 * SUCCESS
3076 * RADIO_NOT_AVAILABLE
3077 * GENERIC_FAILURE
3078 *
3079 */
3080#define RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE 88
3081
3082/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003083 * RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003084 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003085 * Request the setting of GSM/WCDMA Cell Broadcast SMS config.
3086 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003087 * "data" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003088 *
3089 * "response" is a const RIL_GSM_BroadcastSmsConfigInfo **
3090 * "responselen" is count * sizeof (RIL_GSM_BroadcastSmsConfigInfo *)
3091 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003092 * Valid errors:
3093 * SUCCESS
3094 * RADIO_NOT_AVAILABLE
3095 * GENERIC_FAILURE
3096 *
3097 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003098#define RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG 89
Wink Savillef4c4d362009-04-02 01:37:03 -07003099
3100/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003101 * RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003102 *
3103 * Set GSM/WCDMA Cell Broadcast SMS config
3104 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003105 * "data" is a const RIL_GSM_BroadcastSmsConfigInfo **
3106 * "datalen" is count * sizeof(RIL_GSM_BroadcastSmsConfigInfo *)
3107 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003108 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003109 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003110 * Valid errors:
3111 * SUCCESS
3112 * RADIO_NOT_AVAILABLE
3113 * GENERIC_FAILURE
3114 *
3115 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003116#define RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG 90
Wink Savillef4c4d362009-04-02 01:37:03 -07003117
3118/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003119 * RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION
Wink Savillef4c4d362009-04-02 01:37:03 -07003120 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003121* Enable or disable the reception of GSM/WCDMA Cell Broadcast SMS
Wink Savillef4c4d362009-04-02 01:37:03 -07003122 *
3123 * "data" is const int *
3124 * (const int *)data[0] indicates to activate or turn off the
3125 * reception of GSM/WCDMA Cell Broadcast SMS, 0-1,
3126 * 0 - Activate, 1 - Turn off
Wink Savillea592eeb2009-05-22 13:26:36 -07003127 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003128 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003129 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003130 * Valid errors:
3131 * SUCCESS
3132 * RADIO_NOT_AVAILABLE
3133 * GENERIC_FAILURE
3134 *
3135 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003136#define RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION 91
Wink Savillef4c4d362009-04-02 01:37:03 -07003137
3138/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003139 * RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003140 *
3141 * Request the setting of CDMA Broadcast SMS config
3142 *
3143 * "data" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003144 *
3145 * "response" is a const RIL_CDMA_BroadcastSmsConfigInfo **
3146 * "responselen" is count * sizeof (RIL_CDMA_BroadcastSmsConfigInfo *)
3147 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003148 * Valid errors:
3149 * SUCCESS
3150 * RADIO_NOT_AVAILABLE
3151 * GENERIC_FAILURE
3152 *
3153 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003154#define RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG 92
Wink Savillef4c4d362009-04-02 01:37:03 -07003155
3156/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003157 * RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003158 *
3159 * Set CDMA Broadcast SMS config
3160 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003161 * "data" is an const RIL_CDMA_BroadcastSmsConfigInfo **
3162 * "datalen" is count * sizeof(const RIL_CDMA_BroadcastSmsConfigInfo *)
3163 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003164 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003165 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003166 * Valid errors:
3167 * SUCCESS
3168 * RADIO_NOT_AVAILABLE
3169 * GENERIC_FAILURE
3170 *
3171 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003172#define RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG 93
Wink Savillef4c4d362009-04-02 01:37:03 -07003173
3174/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003175 * RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION
Wink Savillef4c4d362009-04-02 01:37:03 -07003176 *
3177 * Enable or disable the reception of CDMA Broadcast SMS
3178 *
3179 * "data" is const int *
3180 * (const int *)data[0] indicates to activate or turn off the
3181 * reception of CDMA Broadcast SMS, 0-1,
3182 * 0 - Activate, 1 - Turn off
Wink Savillea592eeb2009-05-22 13:26:36 -07003183 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003184 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003185 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003186 * Valid errors:
3187 * SUCCESS
3188 * RADIO_NOT_AVAILABLE
3189 * GENERIC_FAILURE
3190 *
3191 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003192#define RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION 94
Wink Savillef4c4d362009-04-02 01:37:03 -07003193
3194/**
3195 * RIL_REQUEST_CDMA_SUBSCRIPTION
3196 *
3197 * Request the device MDN / H_SID / H_NID.
3198 *
3199 * The request is only allowed when CDMA subscription is available. When CDMA
3200 * subscription is changed, application layer should re-issue the request to
3201 * update the subscription information.
3202 *
3203 * If a NULL value is returned for any of the device id, it means that error
3204 * accessing the device.
3205 *
3206 * "response" is const char **
3207 * ((const char **)response)[0] is MDN if CDMA subscription is available
jsh29be25c2009-07-14 20:18:59 -07003208 * ((const char **)response)[1] is a comma separated list of H_SID (Home SID) if
3209 * CDMA subscription is available, in decimal format
3210 * ((const char **)response)[2] is a comma separated list of H_NID (Home NID) if
3211 * CDMA subscription is available, in decimal format
Wink Saville1b5fd232009-04-22 14:50:00 -07003212 * ((const char **)response)[3] is MIN (10 digits, MIN2+MIN1) if CDMA subscription is available
Wink Savilled4ee7dc2009-06-05 15:11:30 -07003213 * ((const char **)response)[4] is PRL version if CDMA subscription is available
Wink Savillef4c4d362009-04-02 01:37:03 -07003214 *
3215 * Valid errors:
3216 * SUCCESS
3217 * RIL_E_SUBSCRIPTION_NOT_AVAILABLE
3218 */
3219
Wink Savilleeafe79d2009-04-03 18:02:34 -07003220#define RIL_REQUEST_CDMA_SUBSCRIPTION 95
Wink Savillef4c4d362009-04-02 01:37:03 -07003221
3222/**
3223 * RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM
3224 *
3225 * Stores a CDMA SMS message to RUIM memory.
3226 *
3227 * "data" is RIL_CDMA_SMS_WriteArgs *
3228 *
3229 * "response" is int *
3230 * ((const int *)response)[0] is the record index where the message is stored.
3231 *
3232 * Valid errors:
3233 * SUCCESS
3234 * RADIO_NOT_AVAILABLE
3235 * GENERIC_FAILURE
3236 *
3237 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003238#define RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM 96
Wink Savillef4c4d362009-04-02 01:37:03 -07003239
3240/**
3241 * RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM
3242 *
3243 * Deletes a CDMA SMS message from RUIM memory.
3244 *
3245 * "data" is int *
3246 * ((int *)data)[0] is the record index of the message to delete.
3247 *
3248 * "response" is NULL
3249 *
3250 * Valid errors:
3251 * SUCCESS
3252 * RADIO_NOT_AVAILABLE
3253 * GENERIC_FAILURE
3254 *
3255 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003256#define RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM 97
Wink Savillef4c4d362009-04-02 01:37:03 -07003257
3258/**
3259 * RIL_REQUEST_DEVICE_IDENTITY
Wink Savilleeafe79d2009-04-03 18:02:34 -07003260 *
3261 * Request the device ESN / MEID / IMEI / IMEISV.
3262 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003263 * The request is always allowed and contains GSM and CDMA device identity;
Wink Savilleeafe79d2009-04-03 18:02:34 -07003264 * it substitutes the deprecated requests RIL_REQUEST_GET_IMEI and
Wink Savillef4c4d362009-04-02 01:37:03 -07003265 * RIL_REQUEST_GET_IMEISV.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003266 *
3267 * If a NULL value is returned for any of the device id, it means that error
Wink Savillef4c4d362009-04-02 01:37:03 -07003268 * accessing the device.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003269 *
3270 * When CDMA subscription is changed the ESN/MEID may change. The application
Wink Savillef4c4d362009-04-02 01:37:03 -07003271 * layer should re-issue the request to update the device identity in this case.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003272 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003273 * "response" is const char **
Wink Savilleeafe79d2009-04-03 18:02:34 -07003274 * ((const char **)response)[0] is IMEI if GSM subscription is available
3275 * ((const char **)response)[1] is IMEISV if GSM subscription is available
3276 * ((const char **)response)[2] is ESN if CDMA subscription is available
3277 * ((const char **)response)[3] is MEID if CDMA subscription is available
3278 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003279 * Valid errors:
3280 * SUCCESS
3281 * RADIO_NOT_AVAILABLE
3282 * GENERIC_FAILURE
3283 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003284#define RIL_REQUEST_DEVICE_IDENTITY 98
Wink Savillef4c4d362009-04-02 01:37:03 -07003285
Wink Saville1b5fd232009-04-22 14:50:00 -07003286/**
3287 * RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE
3288 *
3289 * Request the radio's system selection module to exit emergency
3290 * callback mode. RIL will not respond with SUCCESS until the modem has
3291 * completely exited from Emergency Callback Mode.
3292 *
3293 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003294 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003295 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003296 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003297 * Valid errors:
3298 * SUCCESS
3299 * RADIO_NOT_AVAILABLE
3300 * GENERIC_FAILURE
3301 *
3302 */
3303#define RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE 99
Wink Savillef4c4d362009-04-02 01:37:03 -07003304
jsh000a9fe2009-05-11 14:52:35 -07003305/**
3306 * RIL_REQUEST_GET_SMSC_ADDRESS
3307 *
3308 * Queries the default Short Message Service Center address on the device.
3309 *
3310 * "data" is NULL
3311 *
3312 * "response" is const char * containing the SMSC address.
3313 *
3314 * Valid errors:
3315 * SUCCESS
3316 * RADIO_NOT_AVAILABLE
3317 * GENERIC_FAILURE
3318 *
3319 */
3320#define RIL_REQUEST_GET_SMSC_ADDRESS 100
3321
3322/**
3323 * RIL_REQUEST_SET_SMSC_ADDRESS
3324 *
3325 * Sets the default Short Message Service Center address on the device.
3326 *
3327 * "data" is const char * containing the SMSC address.
3328 *
3329 * "response" is NULL
3330 *
3331 * Valid errors:
3332 * SUCCESS
3333 * RADIO_NOT_AVAILABLE
3334 * GENERIC_FAILURE
3335 *
3336 */
3337#define RIL_REQUEST_SET_SMSC_ADDRESS 101
3338
jshb60444e2009-05-29 11:09:17 -07003339/**
3340 * RIL_REQUEST_REPORT_SMS_MEMORY_STATUS
3341 *
3342 * Indicates whether there is storage available for new SMS messages.
3343 *
3344 * "data" is int *
3345 * ((int *)data)[0] is 1 if memory is available for storing new messages
3346 * is 0 if memory capacity is exceeded
3347 *
3348 * "response" is NULL
3349 *
3350 * Valid errors:
3351 * SUCCESS
3352 * RADIO_NOT_AVAILABLE
3353 * GENERIC_FAILURE
3354 *
3355 */
3356#define RIL_REQUEST_REPORT_SMS_MEMORY_STATUS 102
3357
Wink Saville2641d5b2009-06-08 17:40:42 -07003358/**
3359 * RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING
3360 *
3361 * Indicates that the StkSerivce is running and is
3362 * ready to receive RIL_UNSOL_STK_XXXXX commands.
3363 *
3364 * "data" is NULL
3365 * "response" is NULL
3366 *
3367 * Valid errors:
3368 * SUCCESS
3369 * RADIO_NOT_AVAILABLE
3370 * GENERIC_FAILURE
3371 *
3372 */
3373#define RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING 103
3374
Wink Savillec0114b32011-02-18 10:14:07 -08003375/**
3376 * RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE
3377 *
3378 * Request to query the location where the CDMA subscription shall
3379 * be retrieved
3380 *
3381 * "data" is NULL
3382 *
3383 * "response" is int *
3384 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
3385 *
3386 * Valid errors:
3387 * SUCCESS
3388 * RADIO_NOT_AVAILABLE
3389 * GENERIC_FAILURE
3390 * SUBSCRIPTION_NOT_AVAILABLE
3391 *
3392 * See also: RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE
3393 */
3394#define RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE 104
3395
Jake Hambyfa8d5842011-08-19 16:22:18 -07003396/**
3397 * RIL_REQUEST_ISIM_AUTHENTICATION
3398 *
3399 * Request the ISIM application on the UICC to perform AKA
3400 * challenge/response algorithm for IMS authentication
3401 *
3402 * "data" is a const char * containing the challenge string in Base64 format
3403 * "response" is a const char * containing the response in Base64 format
3404 *
3405 * Valid errors:
3406 * SUCCESS
3407 * RADIO_NOT_AVAILABLE
3408 * GENERIC_FAILURE
3409 */
3410#define RIL_REQUEST_ISIM_AUTHENTICATION 105
3411
Jake Hamby300105d2011-09-26 01:01:44 -07003412/**
3413 * RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU
3414 *
3415 * Acknowledge successful or failed receipt of SMS previously indicated
3416 * via RIL_UNSOL_RESPONSE_NEW_SMS, including acknowledgement TPDU to send
3417 * as the RP-User-Data element of the RP-ACK or RP-ERROR PDU.
3418 *
3419 * "data" is const char **
3420 * ((const char **)data)[0] is "1" on successful receipt (send RP-ACK)
3421 * is "0" on failed receipt (send RP-ERROR)
3422 * ((const char **)data)[1] is the acknowledgement TPDU in hexadecimal format
3423 *
3424 * "response" is NULL
3425 *
3426 * Valid errors:
3427 * SUCCESS
3428 * RADIO_NOT_AVAILABLE
3429 * GENERIC_FAILURE
3430 */
3431#define RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU 106
3432
3433/**
3434 * RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS
3435 *
3436 * Requests to send a SAT/USAT envelope command to SIM.
3437 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111.
3438 *
3439 * This request has one difference from RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND:
3440 * the SW1 and SW2 status bytes from the UICC response are returned along with
3441 * the response data, using the same structure as RIL_REQUEST_SIM_IO.
3442 *
3443 * The RIL implementation shall perform the normal processing of a '91XX'
3444 * response in SW1/SW2 to retrieve the pending proactive command and send it
3445 * as an unsolicited response, as RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND does.
3446 *
3447 * "data" is a const char * containing the SAT/USAT command
3448 * in hexadecimal format starting with command tag
3449 *
3450 * "response" is a const RIL_SIM_IO_Response *
3451 *
3452 * Valid errors:
3453 * RIL_E_SUCCESS
3454 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3455 * RIL_E_GENERIC_FAILURE
3456 */
3457#define RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS 107
3458
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003459/**
3460 * RIL_REQUEST_VOICE_RADIO_TECH
3461 *
3462 * Query the radio technology type (3GPP/3GPP2) used for voice. Query is valid only
3463 * when radio state is RADIO_STATE_ON
3464 *
3465 * "data" is NULL
3466 * "response" is int *
3467 * ((int *) response)[0] is of type const RIL_RadioTechnology
3468 *
3469 * Valid errors:
3470 * SUCCESS
3471 * RADIO_NOT_AVAILABLE
3472 * GENERIC_FAILURE
3473 */
3474#define RIL_REQUEST_VOICE_RADIO_TECH 108
3475
Wink Saville8a9e0212013-04-09 12:11:38 -07003476/**
3477 * RIL_REQUEST_GET_CELL_INFO_LIST
3478 *
3479 * Request all of the current cell information known to the radio. The radio
3480 * must a list of all current cells, including the neighboring cells. If for a particular
3481 * cell information isn't known then the appropriate unknown value will be returned.
3482 * This does not cause or change the rate of RIL_UNSOL_CELL_INFO_LIST.
3483 *
3484 * "data" is NULL
3485 *
3486 * "response" is an array of RIL_CellInfo.
3487 */
3488#define RIL_REQUEST_GET_CELL_INFO_LIST 109
3489
3490/**
3491 * RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE
3492 *
3493 * Sets the minimum time between when RIL_UNSOL_CELL_INFO_LIST should be invoked.
Wink Savillec57b3eb2013-04-17 12:51:41 -07003494 * A value of 0, means invoke RIL_UNSOL_CELL_INFO_LIST when any of the reported
Wink Saville8a9e0212013-04-09 12:11:38 -07003495 * information changes. Setting the value to INT_MAX(0x7fffffff) means never issue
3496 * a RIL_UNSOL_CELL_INFO_LIST.
3497 *
3498 * "data" is int *
3499 * ((int *)data)[0] is minimum time in milliseconds
3500 *
3501 * "response" is NULL
3502 *
3503 * Valid errors:
3504 * SUCCESS
3505 * RADIO_NOT_AVAILABLE
3506 * GENERIC_FAILURE
3507 */
3508#define RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE 110
Jake Hamby300105d2011-09-26 01:01:44 -07003509
Sungmin Choi75697532013-04-26 15:04:45 -07003510/**
3511 * RIL_REQUEST_SET_INITIAL_ATTACH_APN
3512 *
3513 * Set an apn to initial attach network
3514 * "response" is NULL
3515 *
3516 * Valid errors:
3517 * SUCCESS
3518 * RADIO_NOT_AVAILABLE (radio resetting)
3519 * GENERIC_FAILURE
3520 * SUBSCRIPTION_NOT_AVAILABLE
3521 */
3522#define RIL_REQUEST_SET_INITIAL_ATTACH_APN 111
3523
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07003524/**
3525 * RIL_REQUEST_IMS_REGISTRATION_STATE
3526 *
3527 * Request current IMS registration state
3528 *
3529 * "data" is NULL
3530 *
3531 * "response" is int *
3532 * ((int *)response)[0] is registration state:
3533 * 0 - Not registered
3534 * 1 - Registered
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07003535 *
Wink Saville865ce3b2013-11-08 16:37:01 -08003536 * If ((int*)response)[0] is = 1, then ((int *) response)[1]
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07003537 * must follow with IMS SMS format:
3538 *
Wink Saville865ce3b2013-11-08 16:37:01 -08003539 * ((int *) response)[1] is of type RIL_RadioTechnologyFamily
3540 *
3541 * Valid errors:
3542 * SUCCESS
3543 * RADIO_NOT_AVAILABLE
3544 * GENERIC_FAILURE
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07003545 */
3546#define RIL_REQUEST_IMS_REGISTRATION_STATE 112
3547
3548/**
3549 * RIL_REQUEST_IMS_SEND_SMS
3550 *
3551 * Send a SMS message over IMS
3552 *
3553 * "data" is const RIL_IMS_SMS_Message *
3554 *
3555 * "response" is a const RIL_SMS_Response *
3556 *
3557 * Based on the return error, caller decides to resend if sending sms
3558 * fails. SMS_SEND_FAIL_RETRY means retry, and other errors means no retry.
3559 * In case of retry, data is encoded based on Voice Technology available.
3560 *
3561 * Valid errors:
3562 * SUCCESS
3563 * RADIO_NOT_AVAILABLE
3564 * SMS_SEND_FAIL_RETRY
3565 * FDN_CHECK_FAILURE
3566 * GENERIC_FAILURE
3567 *
3568 */
3569#define RIL_REQUEST_IMS_SEND_SMS 113
3570
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003571/***********************************************************************/
3572
Wink Savillef4c4d362009-04-02 01:37:03 -07003573
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003574#define RIL_UNSOL_RESPONSE_BASE 1000
3575
3576/**
3577 * RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED
3578 *
3579 * Indicate when value of RIL_RadioState has changed.
3580 *
3581 * Callee will invoke RIL_RadioStateRequest method on main thread
3582 *
3583 * "data" is NULL
3584 */
3585
3586#define RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED 1000
3587
3588
3589/**
3590 * RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED
3591 *
3592 * Indicate when call state has changed
3593 *
3594 * Callee will invoke RIL_REQUEST_GET_CURRENT_CALLS on main thread
3595 *
3596 * "data" is NULL
3597 *
Wink Saville7f856802009-06-09 10:23:37 -07003598 * Response should be invoked on, for example,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003599 * "RING", "BUSY", "NO CARRIER", and also call state
3600 * transitions (DIALING->ALERTING ALERTING->ACTIVE)
3601 *
3602 * Redundent or extraneous invocations are tolerated
3603 */
3604#define RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED 1001
3605
3606
3607/**
Wink Savillec0114b32011-02-18 10:14:07 -08003608 * RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003609 *
Wink Savillec0114b32011-02-18 10:14:07 -08003610 * Called when the voice network state changed
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003611 *
3612 * Callee will invoke the following requests on main thread:
3613 *
Wink Savillec0114b32011-02-18 10:14:07 -08003614 * RIL_REQUEST_VOICE_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003615 * RIL_REQUEST_OPERATOR
3616 *
3617 * "data" is NULL
3618 *
3619 * FIXME should this happen when SIM records are loaded? (eg, for
3620 * EONS)
3621 */
Wink Savillec0114b32011-02-18 10:14:07 -08003622#define RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED 1002
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003623
3624/**
3625 * RIL_UNSOL_RESPONSE_NEW_SMS
3626 *
3627 * Called when new SMS is received.
Wink Saville7f856802009-06-09 10:23:37 -07003628 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003629 * "data" is const char *
3630 * This is a pointer to a string containing the PDU of an SMS-DELIVER
3631 * as an ascii string of hex digits. The PDU starts with the SMSC address
3632 * per TS 27.005 (+CMT:)
3633 *
3634 * Callee will subsequently confirm the receipt of thei SMS with a
3635 * RIL_REQUEST_SMS_ACKNOWLEDGE
3636 *
Wink Saville7f856802009-06-09 10:23:37 -07003637 * No new RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003638 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
3639 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
3640 */
3641
3642#define RIL_UNSOL_RESPONSE_NEW_SMS 1003
3643
3644/**
3645 * RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT
3646 *
3647 * Called when new SMS Status Report is received.
Wink Saville7f856802009-06-09 10:23:37 -07003648 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003649 * "data" is const char *
3650 * This is a pointer to a string containing the PDU of an SMS-STATUS-REPORT
3651 * as an ascii string of hex digits. The PDU starts with the SMSC address
3652 * per TS 27.005 (+CDS:).
3653 *
3654 * Callee will subsequently confirm the receipt of the SMS with a
3655 * RIL_REQUEST_SMS_ACKNOWLEDGE
3656 *
Wink Saville7f856802009-06-09 10:23:37 -07003657 * No new RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003658 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
3659 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
3660 */
3661
3662#define RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT 1004
3663
3664/**
3665 * RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM
3666 *
3667 * Called when new SMS has been stored on SIM card
Wink Saville7f856802009-06-09 10:23:37 -07003668 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003669 * "data" is const int *
3670 * ((const int *)data)[0] contains the slot index on the SIM that contains
3671 * the new message
3672 */
3673
3674#define RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM 1005
3675
3676/**
3677 * RIL_UNSOL_ON_USSD
3678 *
3679 * Called when a new USSD message is received.
3680 *
3681 * "data" is const char **
Wink Saville7f856802009-06-09 10:23:37 -07003682 * ((const char **)data)[0] points to a type code, which is
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003683 * one of these string values:
3684 * "0" USSD-Notify -- text in ((const char **)data)[1]
3685 * "1" USSD-Request -- text in ((const char **)data)[1]
3686 * "2" Session terminated by network
3687 * "3" other local client (eg, SIM Toolkit) has responded
3688 * "4" Operation not supported
3689 * "5" Network timeout
3690 *
3691 * The USSD session is assumed to persist if the type code is "1", otherwise
3692 * the current session (if any) is assumed to have terminated.
3693 *
3694 * ((const char **)data)[1] points to a message string if applicable, which
3695 * should always be in UTF-8.
3696 */
3697#define RIL_UNSOL_ON_USSD 1006
3698/* Previously #define RIL_UNSOL_ON_USSD_NOTIFY 1006 */
3699
3700/**
3701 * RIL_UNSOL_ON_USSD_REQUEST
3702 *
3703 * Obsolete. Send via RIL_UNSOL_ON_USSD
3704 */
Wink Saville7f856802009-06-09 10:23:37 -07003705#define RIL_UNSOL_ON_USSD_REQUEST 1007
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003706
3707
3708/**
3709 * RIL_UNSOL_NITZ_TIME_RECEIVED
3710 *
3711 * Called when radio has received a NITZ time message
3712 *
3713 * "data" is const char * pointing to NITZ time string
3714 * in the form "yy/mm/dd,hh:mm:ss(+/-)tz,dt"
3715 */
3716#define RIL_UNSOL_NITZ_TIME_RECEIVED 1008
3717
3718/**
3719 * RIL_UNSOL_SIGNAL_STRENGTH
3720 *
3721 * Radio may report signal strength rather han have it polled.
3722 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003723 * "data" is a const RIL_SignalStrength *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003724 */
3725#define RIL_UNSOL_SIGNAL_STRENGTH 1009
3726
3727
3728/**
Wink Savillef4c4d362009-04-02 01:37:03 -07003729 * RIL_UNSOL_DATA_CALL_LIST_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003730 *
Wink Savillec0114b32011-02-18 10:14:07 -08003731 * "data" is an array of RIL_Data_Call_Response_v6 identical to that
Wink Saville29487ef2011-04-15 09:15:31 -07003732 * returned by RIL_REQUEST_DATA_CALL_LIST. It is the complete list
3733 * of current data contexts including new contexts that have been
3734 * activated. A data call is only removed from this list when the
3735 * framework sends a RIL_REQUEST_DEACTIVATE_DATA_CALL or the radio
3736 * is powered off/on.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003737 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003738 * See also: RIL_REQUEST_DATA_CALL_LIST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003739 */
3740
Wink Savillef4c4d362009-04-02 01:37:03 -07003741#define RIL_UNSOL_DATA_CALL_LIST_CHANGED 1010
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003742
3743/**
3744 * RIL_UNSOL_SUPP_SVC_NOTIFICATION
3745 *
3746 * Reports supplementary service related notification from the network.
3747 *
3748 * "data" is a const RIL_SuppSvcNotification *
3749 *
3750 */
3751
3752#define RIL_UNSOL_SUPP_SVC_NOTIFICATION 1011
3753
3754/**
3755 * RIL_UNSOL_STK_SESSION_END
3756 *
3757 * Indicate when STK session is terminated by SIM.
3758 *
3759 * "data" is NULL
3760 */
3761#define RIL_UNSOL_STK_SESSION_END 1012
3762
3763/**
3764 * RIL_UNSOL_STK_PROACTIVE_COMMAND
3765 *
3766 * Indicate when SIM issue a STK proactive command to applications
3767 *
3768 * "data" is a const char * containing SAT/USAT proactive command
3769 * in hexadecimal format string starting with command tag
3770 *
3771 */
3772#define RIL_UNSOL_STK_PROACTIVE_COMMAND 1013
3773
3774/**
3775 * RIL_UNSOL_STK_EVENT_NOTIFY
3776 *
3777 * Indicate when SIM notifies applcations some event happens.
3778 * Generally, application does not need to have any feedback to
3779 * SIM but shall be able to indicate appropriate messages to users.
3780 *
3781 * "data" is a const char * containing SAT/USAT commands or responses
3782 * sent by ME to SIM or commands handled by ME, in hexadecimal format string
3783 * starting with first byte of response data or command tag
3784 *
3785 */
3786#define RIL_UNSOL_STK_EVENT_NOTIFY 1014
3787
3788/**
3789 * RIL_UNSOL_STK_CALL_SETUP
3790 *
3791 * Indicate when SIM wants application to setup a voice call.
3792 *
3793 * "data" is const int *
3794 * ((const int *)data)[0] contains timeout value (in milliseconds)
3795 */
3796#define RIL_UNSOL_STK_CALL_SETUP 1015
3797
3798/**
3799 * RIL_UNSOL_SIM_SMS_STORAGE_FULL
3800 *
3801 * Indicates that SMS storage on the SIM is full. Sent when the network
3802 * attempts to deliver a new SMS message. Messages cannot be saved on the
3803 * SIM until space is freed. In particular, incoming Class 2 messages
3804 * cannot be stored.
3805 *
3806 * "data" is null
3807 *
3808 */
3809#define RIL_UNSOL_SIM_SMS_STORAGE_FULL 1016
3810
3811/**
3812 * RIL_UNSOL_SIM_REFRESH
3813 *
3814 * Indicates that file(s) on the SIM have been updated, or the SIM
3815 * has been reinitialized.
3816 *
Alex Yakavenka45e740e2012-01-31 11:48:27 -08003817 * In the case where RIL is version 6 or older:
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003818 * "data" is an int *
3819 * ((int *)data)[0] is a RIL_SimRefreshResult.
3820 * ((int *)data)[1] is the EFID of the updated file if the result is
Alex Yakavenka45e740e2012-01-31 11:48:27 -08003821 * SIM_FILE_UPDATE or NULL for any other result.
3822 *
3823 * In the case where RIL is version 7:
3824 * "data" is a RIL_SimRefreshResponse_v7 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003825 *
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003826 * Note: If the SIM state changes as a result of the SIM refresh (eg,
3827 * SIM_READY -> SIM_LOCKED_OR_ABSENT), RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003828 * should be sent.
3829 */
3830#define RIL_UNSOL_SIM_REFRESH 1017
3831
3832/**
3833 * RIL_UNSOL_CALL_RING
3834 *
3835 * Ring indication for an incoming call (eg, RING or CRING event).
Wink Saville64533062009-08-28 11:16:03 -07003836 * There must be at least one RIL_UNSOL_CALL_RING at the beginning
3837 * of a call and sending multiple is optional. If the system property
3838 * ro.telephony.call_ring.multiple is false then the upper layers
3839 * will generate the multiple events internally. Otherwise the vendor
3840 * ril must generate multiple RIL_UNSOL_CALL_RING if
3841 * ro.telephony.call_ring.multiple is true or if it is absent.
3842 *
3843 * The rate of these events is controlled by ro.telephony.call_ring.delay
3844 * and has a default value of 3000 (3 seconds) if absent.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003845 *
Wink Saville3d54e742009-05-18 18:00:44 -07003846 * "data" is null for GSM
3847 * "data" is const RIL_CDMA_SignalInfoRecord * if CDMA
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003848 */
3849#define RIL_UNSOL_CALL_RING 1018
3850
The Android Open Source Project34a51082009-03-05 14:34:37 -08003851/**
3852 * RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED
3853 *
3854 * Indicates that SIM state changes.
Wink Saville3d54e742009-05-18 18:00:44 -07003855 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003856 * Callee will invoke RIL_REQUEST_GET_SIM_STATUS on main thread
Wink Savillef4c4d362009-04-02 01:37:03 -07003857
The Android Open Source Project34a51082009-03-05 14:34:37 -08003858 * "data" is null
3859 */
3860#define RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED 1019
3861
3862/**
3863 * RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
3864 *
3865 * Called when new CDMA SMS is received
Wink Saville3d54e742009-05-18 18:00:44 -07003866 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003867 * "data" is const RIL_CDMA_SMS_Message *
Wink Saville3d54e742009-05-18 18:00:44 -07003868 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003869 * Callee will subsequently confirm the receipt of the SMS with
3870 * a RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
Wink Saville3d54e742009-05-18 18:00:44 -07003871 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003872 * No new RIL_UNSOL_RESPONSE_CDMA_NEW_SMS should be sent until
3873 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE has been received
Wink Saville3d54e742009-05-18 18:00:44 -07003874 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003875 */
3876#define RIL_UNSOL_RESPONSE_CDMA_NEW_SMS 1020
3877
3878/**
3879 * RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS
3880 *
3881 * Called when new Broadcast SMS is received
Wink Saville7f856802009-06-09 10:23:37 -07003882 *
Henrik Hall0eba2022010-11-25 10:20:56 +01003883 * "data" can be one of the following:
3884 * If received from GSM network, "data" is const char of 88 bytes
3885 * which indicates each page of a CBS Message sent to the MS by the
3886 * BTS as coded in 3GPP 23.041 Section 9.4.1.2.
3887 * If received from UMTS network, "data" is const char of 90 up to 1252
3888 * bytes which contain between 1 and 15 CBS Message pages sent as one
3889 * packet to the MS by the BTS as coded in 3GPP 23.041 Section 9.4.2.2.
Wink Savillef4c4d362009-04-02 01:37:03 -07003890 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003891 */
3892#define RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS 1021
Wink Savillef4c4d362009-04-02 01:37:03 -07003893
The Android Open Source Project34a51082009-03-05 14:34:37 -08003894/**
3895 * RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL
3896 *
3897 * Indicates that SMS storage on the RUIM is full. Messages
3898 * cannot be saved on the RUIM until space is freed.
3899 *
3900 * "data" is null
Wink Savillef4c4d362009-04-02 01:37:03 -07003901 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08003902 */
Wink Savillef4c4d362009-04-02 01:37:03 -07003903#define RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL 1022
3904
The Android Open Source Project34a51082009-03-05 14:34:37 -08003905/**
3906 * RIL_UNSOL_RESTRICTED_STATE_CHANGED
3907 *
3908 * Indicates a restricted state change (eg, for Domain Specific Access Control).
3909 *
3910 * Radio need send this msg after radio off/on cycle no matter it is changed or not.
3911 *
3912 * "data" is an int *
3913 * ((int *)data)[0] contains a bitmask of RIL_RESTRICTED_STATE_* values.
3914 */
3915#define RIL_UNSOL_RESTRICTED_STATE_CHANGED 1023
3916
Wink Saville1b5fd232009-04-22 14:50:00 -07003917/**
3918 * RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE
3919 *
3920 * Indicates that the radio system selection module has
3921 * autonomously entered emergency callback mode.
3922 *
3923 * "data" is null
3924 *
3925 */
3926#define RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE 1024
The Android Open Source Project34a51082009-03-05 14:34:37 -08003927
Wink Saville1b5fd232009-04-22 14:50:00 -07003928/**
3929 * RIL_UNSOL_CDMA_CALL_WAITING
3930 *
3931 * Called when CDMA radio receives a call waiting indication.
3932 *
3933 * "data" is const RIL_CDMA_CallWaiting *
Wink Saville7f856802009-06-09 10:23:37 -07003934 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003935 */
3936#define RIL_UNSOL_CDMA_CALL_WAITING 1025
3937
3938/**
3939 * RIL_UNSOL_CDMA_OTA_PROVISION_STATUS
3940 *
3941 * Called when CDMA radio receives an update of the progress of an
3942 * OTASP/OTAPA call.
3943 *
3944 * "data" is const int *
3945 * For CDMA this is an integer OTASP/OTAPA status listed in
3946 * RIL_CDMA_OTA_ProvisionStatus.
3947 *
3948 */
3949#define RIL_UNSOL_CDMA_OTA_PROVISION_STATUS 1026
3950
3951/**
3952 * RIL_UNSOL_CDMA_INFO_REC
3953 *
3954 * Called when CDMA radio receives one or more info recs.
3955 *
3956 * "data" is const RIL_CDMA_InformationRecords *
3957 *
3958 */
3959#define RIL_UNSOL_CDMA_INFO_REC 1027
The Android Open Source Project34a51082009-03-05 14:34:37 -08003960
Jaikumar Ganeshaf6ecbf2009-04-29 13:27:51 -07003961/**
3962 * RIL_UNSOL_OEM_HOOK_RAW
3963 *
3964 * This is for OEM specific use.
3965 *
3966 * "data" is a byte[]
3967 */
3968#define RIL_UNSOL_OEM_HOOK_RAW 1028
3969
John Wang5d621da2009-09-18 17:17:48 -07003970/**
3971 * RIL_UNSOL_RINGBACK_TONE
3972 *
3973 * Indicates that nework doesn't have in-band information, need to
3974 * play out-band tone.
3975 *
3976 * "data" is an int *
3977 * ((int *)data)[0] == 0 for stop play ringback tone.
3978 * ((int *)data)[0] == 1 for start play ringback tone.
3979 */
3980#define RIL_UNSOL_RINGBACK_TONE 1029
3981
John Wang5909cf82010-01-29 00:18:54 -08003982/**
3983 * RIL_UNSOL_RESEND_INCALL_MUTE
3984 *
3985 * Indicates that framework/application need reset the uplink mute state.
3986 *
3987 * There may be situations where the mute state becomes out of sync
3988 * between the application and device in some GSM infrastructures.
3989 *
3990 * "data" is null
3991 */
3992#define RIL_UNSOL_RESEND_INCALL_MUTE 1030
Wink Savillec0114b32011-02-18 10:14:07 -08003993
3994/**
3995 * RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED
3996 *
3997 * Called when CDMA subscription source changed.
3998 *
3999 * "data" is int *
4000 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
4001 */
Wink Saville29487ef2011-04-15 09:15:31 -07004002#define RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED 1031
Wink Savillec0114b32011-02-18 10:14:07 -08004003
4004/**
4005 * RIL_UNSOL_CDMA_PRL_CHANGED
4006 *
4007 * Called when PRL (preferred roaming list) changes.
4008 *
4009 * "data" is int *
4010 * ((int *)data)[0] is PRL_VERSION as would be returned by RIL_REQUEST_CDMA_SUBSCRIPTION
4011 */
4012#define RIL_UNSOL_CDMA_PRL_CHANGED 1032
4013
4014/**
4015 * RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE
4016 *
4017 * Called when Emergency Callback Mode Ends
4018 *
4019 * Indicates that the radio system selection module has
4020 * proactively exited emergency callback mode.
4021 *
4022 * "data" is NULL
4023 *
4024 */
4025#define RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE 1033
4026
Wink Saville5b9df332011-04-06 16:24:21 -07004027/**
4028 * RIL_UNSOL_RIL_CONNECTED
4029 *
4030 * Called the ril connects and returns the version
4031 *
4032 * "data" is int *
4033 * ((int *)data)[0] is RIL_VERSION
4034 */
4035#define RIL_UNSOL_RIL_CONNECTED 1034
4036
Naveen Kalla2bc78d62011-12-07 16:22:53 -08004037/**
4038 * RIL_UNSOL_VOICE_RADIO_TECH_CHANGED
4039 *
4040 * Indicates that voice technology has changed. Contains new radio technology
4041 * as a data in the message.
4042 *
4043 * "data" is int *
4044 * ((int *)data)[0] is of type const RIL_RadioTechnology
4045 *
4046 */
4047#define RIL_UNSOL_VOICE_RADIO_TECH_CHANGED 1035
4048
Wink Saville8a9e0212013-04-09 12:11:38 -07004049/**
4050 * RIL_UNSOL_CELL_INFO_LIST
4051 *
4052 * Same information as returned by RIL_REQUEST_GET_CELL_INFO_LIST, but returned
4053 * at the rate no greater than specified by RIL_REQUEST_SET_UNSOL_CELL_INFO_RATE.
4054 *
4055 * "data" is NULL
4056 *
4057 * "response" is an array of RIL_CellInfo.
4058 */
4059#define RIL_UNSOL_CELL_INFO_LIST 1036
Naveen Kalla2bc78d62011-12-07 16:22:53 -08004060
Wink Saville865ce3b2013-11-08 16:37:01 -08004061/**
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004062 * RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED
4063 *
4064 * Called when IMS registration state has changed
4065 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004066 * To get IMS registration state and IMS SMS format, callee needs to invoke the
4067 * following request on main thread:
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004068 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004069 * RIL_REQUEST_IMS_REGISTRATION_STATE
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004070 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004071 * "data" is NULL
4072 *
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004073 */
4074#define RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED 1037
4075
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004076/***********************************************************************/
4077
4078
4079/**
4080 * RIL_Request Function pointer
4081 *
4082 * @param request is one of RIL_REQUEST_*
4083 * @param data is pointer to data defined for that RIL_REQUEST_*
4084 * data is owned by caller, and should not be modified or freed by callee
4085 * @param t should be used in subsequent call to RIL_onResponse
4086 * @param datalen the length of data
4087 *
4088 */
Wink Saville7f856802009-06-09 10:23:37 -07004089typedef void (*RIL_RequestFunc) (int request, void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004090 size_t datalen, RIL_Token t);
4091
4092/**
4093 * This function should return the current radio state synchronously
4094 */
4095typedef RIL_RadioState (*RIL_RadioStateRequest)();
4096
4097/**
4098 * This function returns "1" if the specified RIL_REQUEST code is
4099 * supported and 0 if it is not
4100 *
4101 * @param requestCode is one of RIL_REQUEST codes
4102 */
4103
4104typedef int (*RIL_Supports)(int requestCode);
4105
4106/**
Wink Saville7f856802009-06-09 10:23:37 -07004107 * This function is called from a separate thread--not the
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004108 * thread that calls RIL_RequestFunc--and indicates that a pending
4109 * request should be cancelled.
Wink Saville7f856802009-06-09 10:23:37 -07004110 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004111 * On cancel, the callee should do its best to abandon the request and
4112 * call RIL_onRequestComplete with RIL_Errno CANCELLED at some later point.
4113 *
4114 * Subsequent calls to RIL_onRequestComplete for this request with
4115 * other results will be tolerated but ignored. (That is, it is valid
4116 * to ignore the cancellation request)
4117 *
4118 * RIL_Cancel calls should return immediately, and not wait for cancellation
4119 *
Wink Saville7f856802009-06-09 10:23:37 -07004120 * Please see ITU v.250 5.6.1 for how one might implement this on a TS 27.007
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004121 * interface
4122 *
4123 * @param t token wants to be canceled
4124 */
4125
4126typedef void (*RIL_Cancel)(RIL_Token t);
4127
4128typedef void (*RIL_TimedCallback) (void *param);
4129
4130/**
4131 * Return a version string for your RIL implementation
4132 */
4133typedef const char * (*RIL_GetVersion) (void);
4134
4135typedef struct {
4136 int version; /* set to RIL_VERSION */
4137 RIL_RequestFunc onRequest;
4138 RIL_RadioStateRequest onStateRequest;
4139 RIL_Supports supports;
4140 RIL_Cancel onCancel;
4141 RIL_GetVersion getVersion;
4142} RIL_RadioFunctions;
4143
Sungmin Choi75697532013-04-26 15:04:45 -07004144typedef struct {
4145 char *apn;
4146 char *protocol;
4147 int authtype;
4148 char *username;
4149 char *password;
4150} RIL_InitialAttachApn;
4151
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004152#ifdef RIL_SHLIB
4153struct RIL_Env {
4154 /**
4155 * "t" is parameter passed in on previous call to RIL_Notification
4156 * routine.
4157 *
4158 * If "e" != SUCCESS, then response can be null/is ignored
4159 *
Wink Saville7f856802009-06-09 10:23:37 -07004160 * "response" is owned by caller, and should not be modified or
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004161 * freed by callee
4162 *
4163 * RIL_onRequestComplete will return as soon as possible
4164 */
Wink Saville7f856802009-06-09 10:23:37 -07004165 void (*OnRequestComplete)(RIL_Token t, RIL_Errno e,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004166 void *response, size_t responselen);
4167
4168 /**
4169 * "unsolResponse" is one of RIL_UNSOL_RESPONSE_*
4170 * "data" is pointer to data defined for that RIL_UNSOL_RESPONSE_*
4171 *
4172 * "data" is owned by caller, and should not be modified or freed by callee
4173 */
4174
Wink Saville7f856802009-06-09 10:23:37 -07004175 void (*OnUnsolicitedResponse)(int unsolResponse, const void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004176 size_t datalen);
4177
4178 /**
Wink Saville7f856802009-06-09 10:23:37 -07004179 * Call user-specifed "callback" function on on the same thread that
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004180 * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
4181 * a relative time value at which the callback is invoked. If relativeTime is
4182 * NULL or points to a 0-filled structure, the callback will be invoked as
4183 * soon as possible
4184 */
4185
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07004186 void (*RequestTimedCallback) (RIL_TimedCallback callback,
Wink Saville7f856802009-06-09 10:23:37 -07004187 void *param, const struct timeval *relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004188};
4189
4190
Wink Saville7f856802009-06-09 10:23:37 -07004191/**
4192 * RIL implementations must defined RIL_Init
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004193 * argc and argv will be command line arguments intended for the RIL implementation
4194 * Return NULL on error
4195 *
4196 * @param env is environment point defined as RIL_Env
4197 * @param argc number of arguments
4198 * @param argv list fo arguments
4199 *
4200 */
4201const RIL_RadioFunctions *RIL_Init(const struct RIL_Env *env, int argc, char **argv);
4202
4203#else /* RIL_SHLIB */
4204
4205/**
4206 * Call this once at startup to register notification routine
4207 *
4208 * @param callbacks user-specifed callback function
4209 */
4210void RIL_register (const RIL_RadioFunctions *callbacks);
4211
4212
4213/**
4214 *
4215 * RIL_onRequestComplete will return as soon as possible
4216 *
4217 * @param t is parameter passed in on previous call to RIL_Notification
Wink Saville3d54e742009-05-18 18:00:44 -07004218 * routine.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004219 * @param e error code
4220 * if "e" != SUCCESS, then response can be null/is ignored
4221 * @param response is owned by caller, and should not be modified or
4222 * freed by callee
4223 * @param responselen the length of response in byte
4224 */
Wink Saville7f856802009-06-09 10:23:37 -07004225void RIL_onRequestComplete(RIL_Token t, RIL_Errno e,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004226 void *response, size_t responselen);
4227
4228/**
4229 * @param unsolResponse is one of RIL_UNSOL_RESPONSE_*
4230 * @param data is pointer to data defined for that RIL_UNSOL_RESPONSE_*
4231 * "data" is owned by caller, and should not be modified or freed by callee
4232 * @param datalen the length of data in byte
4233 */
4234
Wink Saville7f856802009-06-09 10:23:37 -07004235void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004236 size_t datalen);
4237
4238
4239/**
Wink Saville7f856802009-06-09 10:23:37 -07004240 * Call user-specifed "callback" function on on the same thread that
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004241 * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
4242 * a relative time value at which the callback is invoked. If relativeTime is
4243 * NULL or points to a 0-filled structure, the callback will be invoked as
4244 * soon as possible
4245 *
4246 * @param callback user-specifed callback function
4247 * @param param parameter list
4248 * @param relativeTime a relative time value at which the callback is invoked
4249 */
4250
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07004251void RIL_requestTimedCallback (RIL_TimedCallback callback,
4252 void *param, const struct timeval *relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004253
4254
4255#endif /* RIL_SHLIB */
4256
4257#ifdef __cplusplus
4258}
4259#endif
4260
4261#endif /*ANDROID_RIL_H*/