blob: 05dad846cb7d4f0e2b9c2f8d8b8bdf234b93e3a4 [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>
Jake Hamby8a4a2332014-01-15 13:12:05 -080023#include <telephony/ril_nv_items.h>
Etan Cohend3652192014-06-20 08:28:44 -070024#include <telephony/ril_msim.h>
Jake Hamby8a4a2332014-01-15 13:12:05 -080025
Wink Savillef4c4d362009-04-02 01:37:03 -070026#ifndef FEATURE_UNIT_TEST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080027#include <sys/time.h>
Wink Savillef4c4d362009-04-02 01:37:03 -070028#endif /* !FEATURE_UNIT_TEST */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080029
30#ifdef __cplusplus
31extern "C" {
32#endif
33
Etan Cohend3652192014-06-20 08:28:44 -070034
35#if defined(ANDROID_SIM_COUNT_2)
36#define SIM_COUNT 2
37#elif defined(ANDROID_SIM_COUNT_3)
38#define SIM_COUNT 3
39#elif defined(ANDROID_SIM_COUNT_4)
40#define SIM_COUNT 4
41#else
42#define SIM_COUNT 1
43#endif
44
45#ifndef ANDROID_MULTI_SIM
46#define SIM_COUNT 1
47#endif
48
Sukanya Rajkhowab44dda32014-06-02 14:03:44 -070049#define RIL_VERSION 11 /* Current version */
Alex Yakavenka45e740e2012-01-31 11:48:27 -080050#define RIL_VERSION_MIN 6 /* Minimum RIL_VERSION supported */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080051
Wink Savillea592eeb2009-05-22 13:26:36 -070052#define CDMA_ALPHA_INFO_BUFFER_LENGTH 64
53#define CDMA_NUMBER_INFO_BUFFER_LENGTH 81
54
Etan Cohend3652192014-06-20 08:28:44 -070055#define MAX_RILDS 3
56#define MAX_SOCKET_NAME_LENGTH 6
57#define MAX_CLIENT_ID_LENGTH 2
58#define MAX_DEBUG_SOCKET_NAME_LENGTH 12
59#define MAX_QEMU_PIPE_NAME_LENGTH 11
Wink Saville8b4e4f72014-10-17 15:01:45 -070060#define MAX_UUID_LENGTH 64
61
Etan Cohend3652192014-06-20 08:28:44 -070062
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080063typedef void * RIL_Token;
64
65typedef enum {
Etan Cohend3652192014-06-20 08:28:44 -070066 RIL_SOCKET_1,
67#if (SIM_COUNT >= 2)
68 RIL_SOCKET_2,
69#if (SIM_COUNT >= 3)
70 RIL_SOCKET_3,
71#endif
72#if (SIM_COUNT >= 4)
73 RIL_SOCKET_4,
74#endif
75#endif
76 RIL_SOCKET_NUM
77} RIL_SOCKET_ID;
78
79
80typedef enum {
The Android Open Source Project00f06fc2009-03-03 19:32:15 -080081 RIL_E_SUCCESS = 0,
82 RIL_E_RADIO_NOT_AVAILABLE = 1, /* If radio did not start or is resetting */
83 RIL_E_GENERIC_FAILURE = 2,
84 RIL_E_PASSWORD_INCORRECT = 3, /* for PIN/PIN2 methods only! */
85 RIL_E_SIM_PIN2 = 4, /* Operation requires SIM PIN2 to be entered */
86 RIL_E_SIM_PUK2 = 5, /* Operation requires SIM PIN2 to be entered */
87 RIL_E_REQUEST_NOT_SUPPORTED = 6,
88 RIL_E_CANCELLED = 7,
89 RIL_E_OP_NOT_ALLOWED_DURING_VOICE_CALL = 8, /* data ops are not allowed during voice
90 call on a Class C GPRS device */
91 RIL_E_OP_NOT_ALLOWED_BEFORE_REG_TO_NW = 9, /* data ops are not allowed before device
92 registers in network */
Wink Saville3d54e742009-05-18 18:00:44 -070093 RIL_E_SMS_SEND_FAIL_RETRY = 10, /* fail to send sms and need retry */
94 RIL_E_SIM_ABSENT = 11, /* fail to set the location where CDMA subscription
95 shall be retrieved because of SIM or RUIM
Wink Savillef4c4d362009-04-02 01:37:03 -070096 card absent */
Wink Saville3d54e742009-05-18 18:00:44 -070097 RIL_E_SUBSCRIPTION_NOT_AVAILABLE = 12, /* fail to find CDMA subscription from specified
Wink Savillef4c4d362009-04-02 01:37:03 -070098 location */
jsh602f80f2009-07-10 15:44:37 -070099 RIL_E_MODE_NOT_SUPPORTED = 13, /* HW does not support preferred network type */
John Wang75534472010-04-20 15:11:42 -0700100 RIL_E_FDN_CHECK_FAILURE = 14, /* command failed because recipient is not on FDN list */
Shishir Agrawal2458d8d2013-11-27 14:53:05 -0800101 RIL_E_ILLEGAL_SIM_OR_ME = 15, /* network selection failed due to
John Wang75534472010-04-20 15:11:42 -0700102 illegal SIM or ME */
Shishir Agrawal2458d8d2013-11-27 14:53:05 -0800103 RIL_E_MISSING_RESOURCE = 16, /* no logical channel available */
Amit Mahajan54563d32014-11-22 00:54:49 +0000104 RIL_E_NO_SUCH_ELEMENT = 17, /* application not found on SIM */
105 RIL_E_DIAL_MODIFIED_TO_USSD = 18, /* DIAL request modified to USSD */
106 RIL_E_DIAL_MODIFIED_TO_SS = 19, /* DIAL request modified to SS */
107 RIL_E_DIAL_MODIFIED_TO_DIAL = 20, /* DIAL request modified to DIAL with different
108 data */
109 RIL_E_USSD_MODIFIED_TO_DIAL = 21, /* USSD request modified to DIAL */
110 RIL_E_USSD_MODIFIED_TO_SS = 22, /* USSD request modified to SS */
111 RIL_E_USSD_MODIFIED_TO_USSD = 23, /* USSD request modified to different USSD
112 request */
113 RIL_E_SS_MODIFIED_TO_DIAL = 24, /* SS request modified to DIAL */
114 RIL_E_SS_MODIFIED_TO_USSD = 25, /* SS request modified to USSD */
115 RIL_E_SUBSCRIPTION_NOT_SUPPORTED = 26, /* Subscription not supported by RIL */
fengluf7408292015-04-14 14:53:55 -0700116 RIL_E_SS_MODIFIED_TO_SS = 27, /* SS request modified to different SS request */
117 RIL_E_LCE_NOT_SUPPORTED = 36 /* LCE service not supported(36 in RILConstants.java) */
Amit Mahajan54563d32014-11-22 00:54:49 +0000118
119
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800120} RIL_Errno;
121
122typedef enum {
123 RIL_CALL_ACTIVE = 0,
124 RIL_CALL_HOLDING = 1,
125 RIL_CALL_DIALING = 2, /* MO call only */
126 RIL_CALL_ALERTING = 3, /* MO call only */
127 RIL_CALL_INCOMING = 4, /* MT call only */
128 RIL_CALL_WAITING = 5 /* MT call only */
129} RIL_CallState;
130
131typedef enum {
Wink Savillef4c4d362009-04-02 01:37:03 -0700132 RADIO_STATE_OFF = 0, /* Radio explictly powered off (eg CFUN=0) */
133 RADIO_STATE_UNAVAILABLE = 1, /* Radio unavailable (eg, resetting or not booted) */
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800134 /* States 2-9 below are deprecated. Just leaving them here for backward compatibility. */
Wink Savillef4c4d362009-04-02 01:37:03 -0700135 RADIO_STATE_SIM_NOT_READY = 2, /* Radio is on, but the SIM interface is not ready */
Wink Saville7f856802009-06-09 10:23:37 -0700136 RADIO_STATE_SIM_LOCKED_OR_ABSENT = 3, /* SIM PIN locked, PUK required, network
Wink Savillef4c4d362009-04-02 01:37:03 -0700137 personalization locked, or SIM absent */
138 RADIO_STATE_SIM_READY = 4, /* Radio is on and SIM interface is available */
139 RADIO_STATE_RUIM_NOT_READY = 5, /* Radio is on, but the RUIM interface is not ready */
140 RADIO_STATE_RUIM_READY = 6, /* Radio is on and the RUIM interface is available */
Wink Saville7f856802009-06-09 10:23:37 -0700141 RADIO_STATE_RUIM_LOCKED_OR_ABSENT = 7, /* RUIM PIN locked, PUK required, network
Wink Savillef4c4d362009-04-02 01:37:03 -0700142 personalization locked, or RUIM absent */
143 RADIO_STATE_NV_NOT_READY = 8, /* Radio is on, but the NV interface is not available */
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800144 RADIO_STATE_NV_READY = 9, /* Radio is on and the NV interface is available */
145 RADIO_STATE_ON = 10 /* Radio is on */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800146} RIL_RadioState;
147
Wink Saville43808972011-01-13 17:39:51 -0800148typedef enum {
149 RADIO_TECH_UNKNOWN = 0,
150 RADIO_TECH_GPRS = 1,
151 RADIO_TECH_EDGE = 2,
152 RADIO_TECH_UMTS = 3,
153 RADIO_TECH_IS95A = 4,
154 RADIO_TECH_IS95B = 5,
155 RADIO_TECH_1xRTT = 6,
156 RADIO_TECH_EVDO_0 = 7,
157 RADIO_TECH_EVDO_A = 8,
158 RADIO_TECH_HSDPA = 9,
159 RADIO_TECH_HSUPA = 10,
160 RADIO_TECH_HSPA = 11,
161 RADIO_TECH_EVDO_B = 12,
162 RADIO_TECH_EHRPD = 13,
Glenn Kastenc9419612011-02-02 17:44:18 -0800163 RADIO_TECH_LTE = 14,
Naveen Kalla2bc78d62011-12-07 16:22:53 -0800164 RADIO_TECH_HSPAP = 15, // HSPA+
Etan Cohend3652192014-06-20 08:28:44 -0700165 RADIO_TECH_GSM = 16, // Only supports voice
Yashdev Singh3c8f37c2015-02-23 13:04:28 -0800166 RADIO_TECH_TD_SCDMA = 17,
167 RADIO_TECH_IWLAN = 18
Wink Saville43808972011-01-13 17:39:51 -0800168} RIL_RadioTechnology;
169
Wink Saville8b4e4f72014-10-17 15:01:45 -0700170typedef enum {
171 RAF_UNKNOWN = (1 << RADIO_TECH_UNKNOWN),
172 RAF_GPRS = (1 << RADIO_TECH_GPRS),
173 RAF_EDGE = (1 << RADIO_TECH_EDGE),
174 RAF_UMTS = (1 << RADIO_TECH_UMTS),
175 RAF_IS95A = (1 << RADIO_TECH_IS95A),
176 RAF_IS95B = (1 << RADIO_TECH_IS95B),
177 RAF_1xRTT = (1 << RADIO_TECH_1xRTT),
178 RAF_EVDO_0 = (1 << RADIO_TECH_EVDO_0),
179 RAF_EVDO_A = (1 << RADIO_TECH_EVDO_A),
180 RAF_HSDPA = (1 << RADIO_TECH_HSDPA),
181 RAF_HSUPA = (1 << RADIO_TECH_HSUPA),
182 RAF_HSPA = (1 << RADIO_TECH_HSPA),
183 RAF_EVDO_B = (1 << RADIO_TECH_EVDO_B),
184 RAF_EHRPD = (1 << RADIO_TECH_EHRPD),
185 RAF_LTE = (1 << RADIO_TECH_LTE),
186 RAF_HSPAP = (1 << RADIO_TECH_HSPAP),
187 RAF_GSM = (1 << RADIO_TECH_GSM),
188 RAF_TD_SCDMA = (1 << RADIO_TECH_TD_SCDMA),
189} RIL_RadioAccessFamily;
190
191typedef enum {
192 RC_PHASE_CONFIGURED = 0, // LM is configured is initial value and value after FINISH completes
193 RC_PHASE_START = 1, // START is sent before Apply and indicates that an APPLY will be
194 // forthcoming with these same parameters
195 RC_PHASE_APPLY = 2, // APPLY is sent after all LM's receive START and returned
196 // RIL_RadioCapability.status = 0, if any START's fail no
197 // APPLY will be sent
198 RC_PHASE_UNSOL_RSP = 3, // UNSOL_RSP is sent with RIL_UNSOL_RADIO_CAPABILITY
199 RC_PHASE_FINISH = 4 // FINISH is sent after all commands have completed. If an error
200 // occurs in any previous command the RIL_RadioAccessesFamily and
Legler Wu8caf06f2014-10-29 14:02:14 +0800201 // logicalModemUuid fields will be the prior configuration thus
Wink Saville8b4e4f72014-10-17 15:01:45 -0700202 // restoring the configuration to the previous value. An error
203 // returned by this command will generally be ignored or may
204 // cause that logical modem to be removed from service.
205} RadioCapabilityPhase;
206
207typedef enum {
208 RC_STATUS_NONE = 0, // This parameter has no meaning with RC_PHASE_START,
209 // RC_PHASE_APPLY
210 RC_STATUS_SUCCESS = 1, // Tell modem the action transaction of set radio
211 // capability was success with RC_PHASE_FINISH
212 RC_STATUS_FAIL = 2, // Tell modem the action transaction of set radio
213 // capability is fail with RC_PHASE_FINISH.
214} RadioCapabilityStatus;
215
216#define RIL_RADIO_CAPABILITY_VERSION 1
217typedef struct {
Legler Wu8caf06f2014-10-29 14:02:14 +0800218 int version; // Version of structure, RIL_RADIO_CAPABILITY_VERSION
Wink Saville8b4e4f72014-10-17 15:01:45 -0700219 int session; // Unique session value defined by framework returned in all "responses/unsol"
220 int phase; // CONFIGURED, START, APPLY, FINISH
221 int rat; // RIL_RadioAccessFamily for the radio
222 char logicalModemUuid[MAX_UUID_LENGTH]; // A UUID typically "com.xxxx.lmX where X is the logical modem.
223 int status; // Return status and an input parameter for RC_PHASE_FINISH
224} RIL_RadioCapability;
225
Wink Savillec0114b32011-02-18 10:14:07 -0800226// Do we want to split Data from Voice and the use
227// RIL_RadioTechnology for get/setPreferredVoice/Data ?
228typedef enum {
229 PREF_NET_TYPE_GSM_WCDMA = 0, /* GSM/WCDMA (WCDMA preferred) */
230 PREF_NET_TYPE_GSM_ONLY = 1, /* GSM only */
231 PREF_NET_TYPE_WCDMA = 2, /* WCDMA */
232 PREF_NET_TYPE_GSM_WCDMA_AUTO = 3, /* GSM/WCDMA (auto mode, according to PRL) */
233 PREF_NET_TYPE_CDMA_EVDO_AUTO = 4, /* CDMA and EvDo (auto mode, according to PRL) */
234 PREF_NET_TYPE_CDMA_ONLY = 5, /* CDMA only */
235 PREF_NET_TYPE_EVDO_ONLY = 6, /* EvDo only */
236 PREF_NET_TYPE_GSM_WCDMA_CDMA_EVDO_AUTO = 7, /* GSM/WCDMA, CDMA, and EvDo (auto mode, according to PRL) */
237 PREF_NET_TYPE_LTE_CDMA_EVDO = 8, /* LTE, CDMA and EvDo */
238 PREF_NET_TYPE_LTE_GSM_WCDMA = 9, /* LTE, GSM/WCDMA */
239 PREF_NET_TYPE_LTE_CMDA_EVDO_GSM_WCDMA = 10, /* LTE, CDMA, EvDo, GSM/WCDMA */
Uma Maheswari Ramalingam0e094872011-09-28 13:25:48 -0700240 PREF_NET_TYPE_LTE_ONLY = 11, /* LTE only */
241 PREF_NET_TYPE_LTE_WCDMA = 12 /* LTE/WCDMA */
Wink Savillec0114b32011-02-18 10:14:07 -0800242} RIL_PreferredNetworkType;
243
244/* Source for cdma subscription */
245typedef enum {
246 CDMA_SUBSCRIPTION_SOURCE_RUIM_SIM = 0,
247 CDMA_SUBSCRIPTION_SOURCE_NV = 1
248} RIL_CdmaSubscriptionSource;
249
Wink Saville74fa3882009-12-22 15:35:41 -0800250/* User-to-User signaling Info activation types derived from 3GPP 23.087 v8.0 */
251typedef enum {
252 RIL_UUS_TYPE1_IMPLICIT = 0,
253 RIL_UUS_TYPE1_REQUIRED = 1,
254 RIL_UUS_TYPE1_NOT_REQUIRED = 2,
255 RIL_UUS_TYPE2_REQUIRED = 3,
256 RIL_UUS_TYPE2_NOT_REQUIRED = 4,
257 RIL_UUS_TYPE3_REQUIRED = 5,
258 RIL_UUS_TYPE3_NOT_REQUIRED = 6
259} RIL_UUS_Type;
260
261/* User-to-User Signaling Information data coding schemes. Possible values for
262 * Octet 3 (Protocol Discriminator field) in the UUIE. The values have been
263 * specified in section 10.5.4.25 of 3GPP TS 24.008 */
264typedef enum {
265 RIL_UUS_DCS_USP = 0, /* User specified protocol */
266 RIL_UUS_DCS_OSIHLP = 1, /* OSI higher layer protocol */
267 RIL_UUS_DCS_X244 = 2, /* X.244 */
268 RIL_UUS_DCS_RMCF = 3, /* Reserved for system mangement
269 convergence function */
270 RIL_UUS_DCS_IA5c = 4 /* IA5 characters */
271} RIL_UUS_DCS;
272
273/* User-to-User Signaling Information defined in 3GPP 23.087 v8.0
274 * This data is passed in RIL_ExtensionRecord and rec contains this
275 * structure when type is RIL_UUS_INFO_EXT_REC */
276typedef struct {
277 RIL_UUS_Type uusType; /* UUS Type */
278 RIL_UUS_DCS uusDcs; /* UUS Data Coding Scheme */
279 int uusLength; /* Length of UUS Data */
280 char * uusData; /* UUS Data */
281} RIL_UUS_Info;
282
283/* CDMA Signal Information Record as defined in C.S0005 section 3.7.5.5 */
Wink Saville1b5fd232009-04-22 14:50:00 -0700284typedef struct {
285 char isPresent; /* non-zero if signal information record is present */
286 char signalType; /* as defined 3.7.5.5-1 */
287 char alertPitch; /* as defined 3.7.5.5-2 */
288 char signal; /* as defined 3.7.5.5-3, 3.7.5.5-4 or 3.7.5.5-5 */
289} RIL_CDMA_SignalInfoRecord;
290
Wink Saville1b5fd232009-04-22 14:50:00 -0700291typedef struct {
292 RIL_CallState state;
293 int index; /* Connection Index for use with, eg, AT+CHLD */
294 int toa; /* type of address, eg 145 = intl */
295 char isMpty; /* nonzero if is mpty call */
296 char isMT; /* nonzero if call is mobile terminated */
297 char als; /* ALS line indicator if available
298 (0 = line 1) */
299 char isVoice; /* nonzero if this is is a voice call */
300 char isVoicePrivacy; /* nonzero if CDMA voice privacy mode is active */
301 char * number; /* Remote party number */
302 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
303 char * name; /* Remote party name */
304 int namePresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
Wink Saville74fa3882009-12-22 15:35:41 -0800305 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800306} RIL_Call;
307
Wink Savillec0114b32011-02-18 10:14:07 -0800308/* Deprecated, use RIL_Data_Call_Response_v6 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800309typedef struct {
Wink Saville43808972011-01-13 17:39:51 -0800310 int cid; /* Context ID, uniquely identifies this call */
Wink Saville1b5fd232009-04-22 14:50:00 -0700311 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -0700312 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
313 For example, "IP", "IPV6", "IPV4V6", or "PPP". */
Wink Saville43808972011-01-13 17:39:51 -0800314 char * apn; /* ignored */
Wink Savillec0114b32011-02-18 10:14:07 -0800315 char * address; /* An address, e.g., "192.0.1.3" or "2001:db8::1". */
316} RIL_Data_Call_Response_v4;
Wink Saville43808972011-01-13 17:39:51 -0800317
318/*
319 * Returned by RIL_REQUEST_SETUP_DATA_CALL, RIL_REQUEST_DATA_CALL_LIST
320 * and RIL_UNSOL_DATA_CALL_LIST_CHANGED, on error status != 0.
321 */
322typedef struct {
323 int status; /* A RIL_DataCallFailCause, 0 which is PDP_FAIL_NONE if no error */
Kazuhiro Ondobeb25b52011-06-17 16:26:45 -0500324 int suggestedRetryTime; /* If status != 0, this fields indicates the suggested retry
325 back-off timer value RIL wants to override the one
326 pre-configured in FW.
327 The unit is miliseconds.
328 The value < 0 means no value is suggested.
Kazuhiro Ondo16157582011-07-24 07:56:32 -0700329 The value 0 means retry should be done ASAP.
Wink Saville8a9e0212013-04-09 12:11:38 -0700330 The value of INT_MAX(0x7fffffff) means no retry. */
Wink Saville43808972011-01-13 17:39:51 -0800331 int cid; /* Context ID, uniquely identifies this call */
332 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
333 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
334 For example, "IP", "IPV6", "IPV4V6", or "PPP". If status is
335 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED this is the type supported
336 such as "IP" or "IPV6" */
337 char * ifname; /* The network interface name */
Wink Savillec0114b32011-02-18 10:14:07 -0800338 char * addresses; /* A space-delimited list of addresses with optional "/" prefix length,
339 e.g., "192.0.1.3" or "192.0.1.11/16 2001:db8::1/64".
Wink Saville43808972011-01-13 17:39:51 -0800340 May not be empty, typically 1 IPv4 or 1 IPv6 or
Wink Savillec0114b32011-02-18 10:14:07 -0800341 one of each. If the prefix length is absent the addresses
342 are assumed to be point to point with IPv4 having a prefix
343 length of 32 and IPv6 128. */
Wink Saville43808972011-01-13 17:39:51 -0800344 char * dnses; /* A space-delimited list of DNS server addresses,
345 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
346 May be empty. */
Wink Savillec0114b32011-02-18 10:14:07 -0800347 char * gateways; /* A space-delimited list of default gateway addresses,
348 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
349 May be empty in which case the addresses represent point
350 to point connections. */
351} RIL_Data_Call_Response_v6;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800352
Etan Cohend3652192014-06-20 08:28:44 -0700353typedef struct {
354 int status; /* A RIL_DataCallFailCause, 0 which is PDP_FAIL_NONE if no error */
355 int suggestedRetryTime; /* If status != 0, this fields indicates the suggested retry
356 back-off timer value RIL wants to override the one
357 pre-configured in FW.
358 The unit is miliseconds.
359 The value < 0 means no value is suggested.
360 The value 0 means retry should be done ASAP.
361 The value of INT_MAX(0x7fffffff) means no retry. */
362 int cid; /* Context ID, uniquely identifies this call */
363 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
364 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
365 For example, "IP", "IPV6", "IPV4V6", or "PPP". If status is
366 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED this is the type supported
367 such as "IP" or "IPV6" */
368 char * ifname; /* The network interface name */
369 char * addresses; /* A space-delimited list of addresses with optional "/" prefix length,
370 e.g., "192.0.1.3" or "192.0.1.11/16 2001:db8::1/64".
371 May not be empty, typically 1 IPv4 or 1 IPv6 or
372 one of each. If the prefix length is absent the addresses
373 are assumed to be point to point with IPv4 having a prefix
374 length of 32 and IPv6 128. */
375 char * dnses; /* A space-delimited list of DNS server addresses,
376 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
377 May be empty. */
378 char * gateways; /* A space-delimited list of default gateway addresses,
379 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
380 May be empty in which case the addresses represent point
381 to point connections. */
382 char * pcscf; /* the Proxy Call State Control Function address
383 via PCO(Protocol Configuration Option) for IMS client. */
Sukanya Rajkhowab44dda32014-06-02 14:03:44 -0700384} RIL_Data_Call_Response_v9;
385
386typedef struct {
387 int status; /* A RIL_DataCallFailCause, 0 which is PDP_FAIL_NONE if no error */
388 int suggestedRetryTime; /* If status != 0, this fields indicates the suggested retry
389 back-off timer value RIL wants to override the one
390 pre-configured in FW.
391 The unit is miliseconds.
392 The value < 0 means no value is suggested.
393 The value 0 means retry should be done ASAP.
394 The value of INT_MAX(0x7fffffff) means no retry. */
395 int cid; /* Context ID, uniquely identifies this call */
396 int active; /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
397 char * type; /* One of the PDP_type values in TS 27.007 section 10.1.1.
398 For example, "IP", "IPV6", "IPV4V6", or "PPP". If status is
399 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED this is the type supported
400 such as "IP" or "IPV6" */
401 char * ifname; /* The network interface name */
402 char * addresses; /* A space-delimited list of addresses with optional "/" prefix length,
403 e.g., "192.0.1.3" or "192.0.1.11/16 2001:db8::1/64".
404 May not be empty, typically 1 IPv4 or 1 IPv6 or
405 one of each. If the prefix length is absent the addresses
406 are assumed to be point to point with IPv4 having a prefix
407 length of 32 and IPv6 128. */
408 char * dnses; /* A space-delimited list of DNS server addresses,
409 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
410 May be empty. */
411 char * gateways; /* A space-delimited list of default gateway addresses,
412 e.g., "192.0.1.3" or "192.0.1.11 2001:db8::1".
413 May be empty in which case the addresses represent point
414 to point connections. */
415 char * pcscf; /* the Proxy Call State Control Function address
416 via PCO(Protocol Configuration Option) for IMS client. */
417 int mtu; /* MTU received from network
418 Value <= 0 means network has either not sent a value or
419 sent an invalid value */
420} RIL_Data_Call_Response_v11;
Etan Cohend3652192014-06-20 08:28:44 -0700421
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -0700422typedef enum {
423 RADIO_TECH_3GPP = 1, /* 3GPP Technologies - GSM, WCDMA */
424 RADIO_TECH_3GPP2 = 2 /* 3GPP2 Technologies - CDMA */
425} RIL_RadioTechnologyFamily;
426
427typedef struct {
428 RIL_RadioTechnologyFamily tech;
429 unsigned char retry; /* 0 == not retry, nonzero == retry */
430 int messageRef; /* Valid field if retry is set to nonzero.
431 Contains messageRef from RIL_SMS_Response
432 corresponding to failed MO SMS.
433 */
434
435 union {
436 /* Valid field if tech is RADIO_TECH_3GPP2. See RIL_REQUEST_CDMA_SEND_SMS */
437 RIL_CDMA_SMS_Message* cdmaMessage;
438
439 /* Valid field if tech is RADIO_TECH_3GPP. See RIL_REQUEST_SEND_SMS */
440 char** gsmMessage;
441 } message;
442} RIL_IMS_SMS_Message;
443
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800444typedef struct {
Tammo Spalink8e3a2ca2009-09-11 11:26:30 +0800445 int messageRef; /* TP-Message-Reference for GSM,
446 and BearerData MessageId for CDMA
447 (See 3GPP2 C.S0015-B, v2.0, table 4.5-1). */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800448 char *ackPDU; /* or NULL if n/a */
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -0700449 int errorCode; /* See 3GPP 27.005, 3.2.5 for GSM/UMTS,
450 3GPP2 N.S0005 (IS-41C) Table 171 for CDMA,
451 -1 if unknown or not applicable*/
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800452} RIL_SMS_Response;
453
454/** Used by RIL_REQUEST_WRITE_SMS_TO_SIM */
455typedef struct {
456 int status; /* Status of message. See TS 27.005 3.1, "<stat>": */
457 /* 0 = "REC UNREAD" */
458 /* 1 = "REC READ" */
459 /* 2 = "STO UNSENT" */
460 /* 3 = "STO SENT" */
johnwangf8bc1672009-05-14 19:19:47 -0700461 char * pdu; /* PDU of message to write, as an ASCII hex string less the SMSC address,
462 the TP-layer length is "strlen(pdu)/2". */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800463 char * smsc; /* SMSC address in GSM BCD format prefixed by a length byte
464 (as expected by TS 27.005) or NULL for default SMSC */
465} RIL_SMS_WriteArgs;
466
467/** Used by RIL_REQUEST_DIAL */
468typedef struct {
469 char * address;
470 int clir;
471 /* (same as 'n' paremeter in TS 27.007 7.7 "+CLIR"
472 * clir == 0 on "use subscription default value"
473 * clir == 1 on "CLIR invocation" (restrict CLI presentation)
474 * clir == 2 on "CLIR suppression" (allow CLI presentation)
475 */
Wink Saville74fa3882009-12-22 15:35:41 -0800476 RIL_UUS_Info * uusInfo; /* NULL or Pointer to User-User Signaling Information */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800477} RIL_Dial;
478
479typedef struct {
480 int command; /* one of the commands listed for TS 27.007 +CRSM*/
481 int fileid; /* EF id */
482 char *path; /* "pathid" from TS 27.007 +CRSM command.
483 Path is in hex asciii format eg "7f205f70"
Wink Saville1b5fd232009-04-22 14:50:00 -0700484 Path must always be provided.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800485 */
486 int p1;
487 int p2;
488 int p3;
489 char *data; /* May be NULL*/
490 char *pin2; /* May be NULL*/
Wink Savillec0114b32011-02-18 10:14:07 -0800491} RIL_SIM_IO_v5;
492
493typedef struct {
494 int command; /* one of the commands listed for TS 27.007 +CRSM*/
495 int fileid; /* EF id */
496 char *path; /* "pathid" from TS 27.007 +CRSM command.
497 Path is in hex asciii format eg "7f205f70"
498 Path must always be provided.
499 */
500 int p1;
501 int p2;
502 int p3;
503 char *data; /* May be NULL*/
504 char *pin2; /* May be NULL*/
505 char *aidPtr; /* AID value, See ETSI 102.221 8.1 and 101.220 4, NULL if no value. */
506} RIL_SIM_IO_v6;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800507
Shishir Agrawal2458d8d2013-11-27 14:53:05 -0800508/* Used by RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL and
509 * RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC. */
510typedef struct {
511 int sessionid; /* "sessionid" from TS 27.007 +CGLA command. Should be
512 ignored for +CSIM command. */
513
514 /* Following fields are used to derive the APDU ("command" and "length"
515 values in TS 27.007 +CSIM and +CGLA commands). */
516 int cla;
517 int instruction;
518 int p1;
519 int p2;
520 int p3; /* A negative P3 implies a 4 byte APDU. */
521 char *data; /* May be NULL. In hex string format. */
522} RIL_SIM_APDU;
523
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800524typedef struct {
525 int sw1;
526 int sw2;
Amit Mahajan2875bc22014-08-06 10:03:15 -0700527 char *simResponse; /* In hex string format ([a-fA-F0-9]*), except for SIM_AUTHENTICATION
528 response for which it is in Base64 format, see 3GPP TS 31.102 7.1.2 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800529} RIL_SIM_IO_Response;
530
531/* See also com.android.internal.telephony.gsm.CallForwardInfo */
532
533typedef struct {
534 int status; /*
535 * For RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
536 * status 1 = active, 0 = not active
537 *
538 * For RIL_REQUEST_SET_CALL_FORWARD:
539 * status is:
540 * 0 = disable
541 * 1 = enable
542 * 2 = interrogate
543 * 3 = registeration
544 * 4 = erasure
545 */
546
Wink Saville3d54e742009-05-18 18:00:44 -0700547 int reason; /* from TS 27.007 7.11 "reason" */
548 int serviceClass;/* From 27.007 +CCFC/+CLCK "class"
549 See table for Android mapping from
550 MMI service code
551 0 means user doesn't input class */
552 int toa; /* "type" from TS 27.007 7.11 */
553 char * number; /* "number" from TS 27.007 7.11. May be NULL */
554 int timeSeconds; /* for CF no reply only */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800555}RIL_CallForwardInfo;
556
557typedef struct {
johnwange0ba6a92009-09-11 19:14:52 -0700558 char * cid; /* Combination of LAC and Cell Id in 32 bits in GSM.
559 * Upper 16 bits is LAC and lower 16 bits
560 * is CID (as described in TS 27.005)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800561 * Primary Scrambling Code (as described in TS 25.331)
Wink Saville7f856802009-06-09 10:23:37 -0700562 * in 9 bits in UMTS
johnwange0ba6a92009-09-11 19:14:52 -0700563 * Valid values are hexadecimal 0x0000 - 0xffffffff.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800564 */
johnwange0ba6a92009-09-11 19:14:52 -0700565 int rssi; /* Received RSSI in GSM,
566 * Level index of CPICH Received Signal Code Power in UMTS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800567 */
568} RIL_NeighboringCell;
569
fengluf7408292015-04-14 14:53:55 -0700570typedef struct {
571 char lce_status; /* LCE service status:
572 * -1 = not supported;
573 * 0 = stopped;
574 * 1 = active.
575 */
576 unsigned int actual_interval_ms; /* actual LCE reporting interval,
577 * meaningful only if LCEStatus = 1.
578 */
579} RIL_LceStatusInfo;
580
581typedef struct {
582 unsigned int last_hop_capacity_kbps; /* last-hop cellular capacity: bytes/second. */
583 unsigned char confidence_level; /* capacity estimate confidence: 0-100 */
584 unsigned char lce_suspended; /* LCE report going to be suspended? (e.g., radio
585 * moves to inactive state or network type change)
586 * 1 = suspended;
587 * 0 = not suspended.
588 */
589} RIL_LceDataInfo;
590
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800591/* See RIL_REQUEST_LAST_CALL_FAIL_CAUSE */
592typedef enum {
Naveen Kalla1b3a6fe2010-04-21 16:44:37 -0700593 CALL_FAIL_UNOBTAINABLE_NUMBER = 1,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800594 CALL_FAIL_NORMAL = 16,
595 CALL_FAIL_BUSY = 17,
596 CALL_FAIL_CONGESTION = 34,
597 CALL_FAIL_ACM_LIMIT_EXCEEDED = 68,
598 CALL_FAIL_CALL_BARRED = 240,
599 CALL_FAIL_FDN_BLOCKED = 241,
jsh602f80f2009-07-10 15:44:37 -0700600 CALL_FAIL_IMSI_UNKNOWN_IN_VLR = 242,
601 CALL_FAIL_IMEI_NOT_ACCEPTED = 243,
Amit Mahajan54563d32014-11-22 00:54:49 +0000602 CALL_FAIL_DIAL_MODIFIED_TO_USSD = 244, /* STK Call Control */
603 CALL_FAIL_DIAL_MODIFIED_TO_SS = 245,
604 CALL_FAIL_DIAL_MODIFIED_TO_DIAL = 246,
Wink Saville1b5fd232009-04-22 14:50:00 -0700605 CALL_FAIL_CDMA_LOCKED_UNTIL_POWER_CYCLE = 1000,
606 CALL_FAIL_CDMA_DROP = 1001,
607 CALL_FAIL_CDMA_INTERCEPT = 1002,
608 CALL_FAIL_CDMA_REORDER = 1003,
609 CALL_FAIL_CDMA_SO_REJECT = 1004,
610 CALL_FAIL_CDMA_RETRY_ORDER = 1005,
611 CALL_FAIL_CDMA_ACCESS_FAILURE = 1006,
612 CALL_FAIL_CDMA_PREEMPTED = 1007,
613 CALL_FAIL_CDMA_NOT_EMERGENCY = 1008, /* For non-emergency number dialed
614 during emergency callback mode */
Naveen Kalla03c1edf2009-09-23 11:18:35 -0700615 CALL_FAIL_CDMA_ACCESS_BLOCKED = 1009, /* CDMA network access probes blocked */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800616 CALL_FAIL_ERROR_UNSPECIFIED = 0xffff
617} RIL_LastCallFailCause;
618
Wink Savillef4c4d362009-04-02 01:37:03 -0700619/* See RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800620typedef enum {
Wink Saville43808972011-01-13 17:39:51 -0800621 PDP_FAIL_NONE = 0, /* No error, connection ok */
622
623 /* an integer cause code defined in TS 24.008
624 section 6.1.3.1.3 or TS 24.301 Release 8+ Annex B.
625 If the implementation does not have access to the exact cause codes,
626 then it should return one of the following values,
627 as the UI layer needs to distinguish these
628 cases for error notification and potential retries. */
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700629 PDP_FAIL_OPERATOR_BARRED = 0x08, /* no retry */
630 PDP_FAIL_INSUFFICIENT_RESOURCES = 0x1A,
631 PDP_FAIL_MISSING_UKNOWN_APN = 0x1B, /* no retry */
632 PDP_FAIL_UNKNOWN_PDP_ADDRESS_TYPE = 0x1C, /* no retry */
633 PDP_FAIL_USER_AUTHENTICATION = 0x1D, /* no retry */
634 PDP_FAIL_ACTIVATION_REJECT_GGSN = 0x1E, /* no retry */
635 PDP_FAIL_ACTIVATION_REJECT_UNSPECIFIED = 0x1F,
636 PDP_FAIL_SERVICE_OPTION_NOT_SUPPORTED = 0x20, /* no retry */
637 PDP_FAIL_SERVICE_OPTION_NOT_SUBSCRIBED = 0x21, /* no retry */
638 PDP_FAIL_SERVICE_OPTION_OUT_OF_ORDER = 0x22,
Wink Saville43808972011-01-13 17:39:51 -0800639 PDP_FAIL_NSAPI_IN_USE = 0x23, /* no retry */
Hui Wang11e8b232014-09-19 16:40:17 -0500640 PDP_FAIL_REGULAR_DEACTIVATION = 0x24, /* possibly restart radio,
641 based on framework config */
Wink Saville43808972011-01-13 17:39:51 -0800642 PDP_FAIL_ONLY_IPV4_ALLOWED = 0x32, /* no retry */
643 PDP_FAIL_ONLY_IPV6_ALLOWED = 0x33, /* no retry */
644 PDP_FAIL_ONLY_SINGLE_BEARER_ALLOWED = 0x34,
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700645 PDP_FAIL_PROTOCOL_ERRORS = 0x6F, /* no retry */
Wink Saville43808972011-01-13 17:39:51 -0800646
Jaikumar Ganeshd6aa2e32009-05-04 11:09:46 -0700647 /* Not mentioned in the specification */
Wink Savillec0114b32011-02-18 10:14:07 -0800648 PDP_FAIL_VOICE_REGISTRATION_FAIL = -1,
649 PDP_FAIL_DATA_REGISTRATION_FAIL = -2,
Wink Saville43808972011-01-13 17:39:51 -0800650
651 /* reasons for data call drop - network/modem disconnect */
Wink Saville3492c6e2013-10-03 13:53:27 -0700652 PDP_FAIL_SIGNAL_LOST = -3,
Wink Saville43808972011-01-13 17:39:51 -0800653 PDP_FAIL_PREF_RADIO_TECH_CHANGED = -4,/* preferred technology has changed, should retry
654 with parameters appropriate for new technology */
655 PDP_FAIL_RADIO_POWER_OFF = -5, /* data call was disconnected because radio was resetting,
656 powered off - no retry */
657 PDP_FAIL_TETHERED_CALL_ACTIVE = -6, /* data call was disconnected by modem because tethered
658 mode was up on same APN/data profile - no retry until
659 tethered call is off */
660
661 PDP_FAIL_ERROR_UNSPECIFIED = 0xffff, /* retry silently */
662} RIL_DataCallFailCause;
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800663
jsh602f80f2009-07-10 15:44:37 -0700664/* See RIL_REQUEST_SETUP_DATA_CALL */
665typedef enum {
666 RIL_DATA_PROFILE_DEFAULT = 0,
667 RIL_DATA_PROFILE_TETHERED = 1,
Hui Wang8d679622014-10-16 14:59:27 -0500668 RIL_DATA_PROFILE_IMS = 2,
669 RIL_DATA_PROFILE_FOTA = 3,
670 RIL_DATA_PROFILE_CBS = 4,
671 RIL_DATA_PROFILE_OEM_BASE = 1000, /* Start of OEM-specific profiles */
672 RIL_DATA_PROFILE_INVALID = 0xFFFFFFFF
jsh602f80f2009-07-10 15:44:37 -0700673} RIL_DataProfile;
674
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800675/* Used by RIL_UNSOL_SUPP_SVC_NOTIFICATION */
676typedef struct {
677 int notificationType; /*
678 * 0 = MO intermediate result code
679 * 1 = MT unsolicited result code
680 */
681 int code; /* See 27.007 7.17
682 "code1" for MO
683 "code2" for MT. */
684 int index; /* CUG index. See 27.007 7.17. */
685 int type; /* "type" from 27.007 7.17 (MT only). */
686 char * number; /* "number" from 27.007 7.17
687 (MT only, may be NULL). */
688} RIL_SuppSvcNotification;
689
Wink Savillef4c4d362009-04-02 01:37:03 -0700690#define RIL_CARD_MAX_APPS 8
691
692typedef enum {
693 RIL_CARDSTATE_ABSENT = 0,
694 RIL_CARDSTATE_PRESENT = 1,
695 RIL_CARDSTATE_ERROR = 2
696} RIL_CardState;
697
698typedef enum {
699 RIL_PERSOSUBSTATE_UNKNOWN = 0, /* initial state */
700 RIL_PERSOSUBSTATE_IN_PROGRESS = 1, /* in between each lock transition */
Wink Saville7f856802009-06-09 10:23:37 -0700701 RIL_PERSOSUBSTATE_READY = 2, /* when either SIM or RUIM Perso is finished
702 since each app can only have 1 active perso
Wink Savillef4c4d362009-04-02 01:37:03 -0700703 involved */
704 RIL_PERSOSUBSTATE_SIM_NETWORK = 3,
705 RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET = 4,
706 RIL_PERSOSUBSTATE_SIM_CORPORATE = 5,
707 RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER = 6,
708 RIL_PERSOSUBSTATE_SIM_SIM = 7,
709 RIL_PERSOSUBSTATE_SIM_NETWORK_PUK = 8, /* The corresponding perso lock is blocked */
710 RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK = 9,
711 RIL_PERSOSUBSTATE_SIM_CORPORATE_PUK = 10,
712 RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK = 11,
713 RIL_PERSOSUBSTATE_SIM_SIM_PUK = 12,
714 RIL_PERSOSUBSTATE_RUIM_NETWORK1 = 13,
715 RIL_PERSOSUBSTATE_RUIM_NETWORK2 = 14,
716 RIL_PERSOSUBSTATE_RUIM_HRPD = 15,
717 RIL_PERSOSUBSTATE_RUIM_CORPORATE = 16,
718 RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER = 17,
719 RIL_PERSOSUBSTATE_RUIM_RUIM = 18,
720 RIL_PERSOSUBSTATE_RUIM_NETWORK1_PUK = 19, /* The corresponding perso lock is blocked */
721 RIL_PERSOSUBSTATE_RUIM_NETWORK2_PUK = 20,
722 RIL_PERSOSUBSTATE_RUIM_HRPD_PUK = 21,
723 RIL_PERSOSUBSTATE_RUIM_CORPORATE_PUK = 22,
724 RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK = 23,
725 RIL_PERSOSUBSTATE_RUIM_RUIM_PUK = 24
726} RIL_PersoSubstate;
727
728typedef enum {
729 RIL_APPSTATE_UNKNOWN = 0,
730 RIL_APPSTATE_DETECTED = 1,
731 RIL_APPSTATE_PIN = 2, /* If PIN1 or UPin is required */
732 RIL_APPSTATE_PUK = 3, /* If PUK1 or Puk for UPin is required */
Wink Saville7f856802009-06-09 10:23:37 -0700733 RIL_APPSTATE_SUBSCRIPTION_PERSO = 4, /* perso_substate should be look at
Wink Savillef4c4d362009-04-02 01:37:03 -0700734 when app_state is assigned to this value */
735 RIL_APPSTATE_READY = 5
736} RIL_AppState;
737
738typedef enum {
739 RIL_PINSTATE_UNKNOWN = 0,
740 RIL_PINSTATE_ENABLED_NOT_VERIFIED = 1,
741 RIL_PINSTATE_ENABLED_VERIFIED = 2,
742 RIL_PINSTATE_DISABLED = 3,
743 RIL_PINSTATE_ENABLED_BLOCKED = 4,
744 RIL_PINSTATE_ENABLED_PERM_BLOCKED = 5
745} RIL_PinState;
746
747typedef enum {
748 RIL_APPTYPE_UNKNOWN = 0,
749 RIL_APPTYPE_SIM = 1,
750 RIL_APPTYPE_USIM = 2,
751 RIL_APPTYPE_RUIM = 3,
Wink Savillec0114b32011-02-18 10:14:07 -0800752 RIL_APPTYPE_CSIM = 4,
753 RIL_APPTYPE_ISIM = 5
Wink Savillef4c4d362009-04-02 01:37:03 -0700754} RIL_AppType;
755
756typedef struct
757{
Wink Saville7f856802009-06-09 10:23:37 -0700758 RIL_AppType app_type;
759 RIL_AppState app_state;
760 RIL_PersoSubstate perso_substate; /* applicable only if app_state ==
Wink Savillef4c4d362009-04-02 01:37:03 -0700761 RIL_APPSTATE_SUBSCRIPTION_PERSO */
Wink Saville7f856802009-06-09 10:23:37 -0700762 char *aid_ptr; /* null terminated string, e.g., from 0xA0, 0x00 -> 0x41,
Wink Savillef4c4d362009-04-02 01:37:03 -0700763 0x30, 0x30, 0x30 */
764 char *app_label_ptr; /* null terminated string */
Wink Savillec0114b32011-02-18 10:14:07 -0800765 int pin1_replaced; /* applicable to USIM, CSIM & ISIM */
Wink Saville7f856802009-06-09 10:23:37 -0700766 RIL_PinState pin1;
767 RIL_PinState pin2;
Wink Savillef4c4d362009-04-02 01:37:03 -0700768} RIL_AppStatus;
769
Wink Savillec0114b32011-02-18 10:14:07 -0800770/* Deprecated, use RIL_CardStatus_v6 */
771typedef struct
772{
773 RIL_CardState card_state;
774 RIL_PinState universal_pin_state; /* applicable to USIM and CSIM: RIL_PINSTATE_xxx */
775 int gsm_umts_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
776 int cdma_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
777 int num_applications; /* value <= RIL_CARD_MAX_APPS */
778 RIL_AppStatus applications[RIL_CARD_MAX_APPS];
779} RIL_CardStatus_v5;
780
Wink Savillef4c4d362009-04-02 01:37:03 -0700781typedef struct
782{
Wink Saville7f856802009-06-09 10:23:37 -0700783 RIL_CardState card_state;
Wink Savillef4c4d362009-04-02 01:37:03 -0700784 RIL_PinState universal_pin_state; /* applicable to USIM and CSIM: RIL_PINSTATE_xxx */
Wink Savillec0114b32011-02-18 10:14:07 -0800785 int gsm_umts_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
786 int cdma_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
787 int ims_subscription_app_index; /* value < RIL_CARD_MAX_APPS, -1 if none */
Wink Savillef4c4d362009-04-02 01:37:03 -0700788 int num_applications; /* value <= RIL_CARD_MAX_APPS */
789 RIL_AppStatus applications[RIL_CARD_MAX_APPS];
Wink Savillec0114b32011-02-18 10:14:07 -0800790} RIL_CardStatus_v6;
Wink Savillef4c4d362009-04-02 01:37:03 -0700791
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800792/** The result of a SIM refresh, returned in data[0] of RIL_UNSOL_SIM_REFRESH
793 * or as part of RIL_SimRefreshResponse_v7
794 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800795typedef enum {
796 /* A file on SIM has been updated. data[1] contains the EFID. */
797 SIM_FILE_UPDATE = 0,
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800798 /* SIM initialized. All files should be re-read. */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -0800799 SIM_INIT = 1,
800 /* SIM reset. SIM power required, SIM may be locked and all files should be re-read. */
801 SIM_RESET = 2
802} RIL_SimRefreshResult;
803
Alex Yakavenka45e740e2012-01-31 11:48:27 -0800804typedef struct {
805 RIL_SimRefreshResult result;
806 int ef_id; /* is the EFID of the updated file if the result is */
807 /* SIM_FILE_UPDATE or 0 for any other result. */
808 char * aid; /* is AID(application ID) of the card application */
809 /* See ETSI 102.221 8.1 and 101.220 4 */
810 /* For SIM_FILE_UPDATE result it can be set to AID of */
811 /* application in which updated EF resides or it can be */
812 /* NULL if EF is outside of an application. */
813 /* For SIM_INIT result this field is set to AID of */
814 /* application that caused REFRESH */
815 /* For SIM_RESET result it is NULL. */
816} RIL_SimRefreshResponse_v7;
817
Wink Savillec0114b32011-02-18 10:14:07 -0800818/* Deprecated, use RIL_CDMA_CallWaiting_v6 */
819typedef struct {
820 char * number; /* Remote party number */
821 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
822 char * name; /* Remote party name */
823 RIL_CDMA_SignalInfoRecord signalInfoRecord;
824} RIL_CDMA_CallWaiting_v5;
825
Wink Saville1b5fd232009-04-22 14:50:00 -0700826typedef struct {
827 char * number; /* Remote party number */
828 int numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
829 char * name; /* Remote party name */
Wink Saville3d54e742009-05-18 18:00:44 -0700830 RIL_CDMA_SignalInfoRecord signalInfoRecord;
Wink Savillec0114b32011-02-18 10:14:07 -0800831 /* Number type/Number plan required to support International Call Waiting */
832 int number_type; /* 0=Unknown, 1=International, 2=National,
833 3=Network specific, 4=subscriber */
834 int number_plan; /* 0=Unknown, 1=ISDN, 3=Data, 4=Telex, 8=Nat'l, 9=Private */
835} RIL_CDMA_CallWaiting_v6;
Wink Saville1b5fd232009-04-22 14:50:00 -0700836
Wink Savillea592eeb2009-05-22 13:26:36 -0700837/**
838 * Which types of Cell Broadcast Message (CBM) are to be received by the ME
839 *
840 * uFromServiceID - uToServiceID defines a range of CBM message identifiers
841 * whose value is 0x0000 - 0xFFFF as defined in TS 23.041 9.4.1.2.2 for GMS
842 * and 9.4.4.2.2 for UMTS. All other values can be treated as empty
843 * CBM message ID.
844 *
845 * uFromCodeScheme - uToCodeScheme defines a range of CBM data coding schemes
846 * whose value is 0x00 - 0xFF as defined in TS 23.041 9.4.1.2.3 for GMS
847 * and 9.4.4.2.3 for UMTS.
848 * All other values can be treated as empty CBM data coding scheme.
849 *
850 * selected 0 means message types specified in <fromServiceId, toServiceId>
851 * and <fromCodeScheme, toCodeScheme>are not accepted, while 1 means accepted.
852 *
853 * Used by RIL_REQUEST_GSM_GET_BROADCAST_CONFIG and
854 * RIL_REQUEST_GSM_SET_BROADCAST_CONFIG.
855 */
Wink Savillef4c4d362009-04-02 01:37:03 -0700856typedef struct {
Wink Savillea592eeb2009-05-22 13:26:36 -0700857 int fromServiceId;
858 int toServiceId;
859 int fromCodeScheme;
860 int toCodeScheme;
861 unsigned char selected;
862} RIL_GSM_BroadcastSmsConfigInfo;
Wink Savillef4c4d362009-04-02 01:37:03 -0700863
The Android Open Source Project34a51082009-03-05 14:34:37 -0800864/* No restriction at all including voice/SMS/USSD/SS/AV64 and packet data. */
865#define RIL_RESTRICTED_STATE_NONE 0x00
866/* Block emergency call due to restriction. But allow all normal voice/SMS/USSD/SS/AV64. */
867#define RIL_RESTRICTED_STATE_CS_EMERGENCY 0x01
868/* Block all normal voice/SMS/USSD/SS/AV64 due to restriction. Only Emergency call allowed. */
869#define RIL_RESTRICTED_STATE_CS_NORMAL 0x02
Wink Savillea592eeb2009-05-22 13:26:36 -0700870/* Block all voice/SMS/USSD/SS/AV64 including emergency call due to restriction.*/
The Android Open Source Project34a51082009-03-05 14:34:37 -0800871#define RIL_RESTRICTED_STATE_CS_ALL 0x04
872/* Block packet data access due to restriction. */
873#define RIL_RESTRICTED_STATE_PS_ALL 0x10
874
Wink Saville1b5fd232009-04-22 14:50:00 -0700875/* The status for an OTASP/OTAPA session */
876typedef enum {
877 CDMA_OTA_PROVISION_STATUS_SPL_UNLOCKED,
878 CDMA_OTA_PROVISION_STATUS_SPC_RETRIES_EXCEEDED,
879 CDMA_OTA_PROVISION_STATUS_A_KEY_EXCHANGED,
880 CDMA_OTA_PROVISION_STATUS_SSD_UPDATED,
881 CDMA_OTA_PROVISION_STATUS_NAM_DOWNLOADED,
882 CDMA_OTA_PROVISION_STATUS_MDN_DOWNLOADED,
883 CDMA_OTA_PROVISION_STATUS_IMSI_DOWNLOADED,
884 CDMA_OTA_PROVISION_STATUS_PRL_DOWNLOADED,
885 CDMA_OTA_PROVISION_STATUS_COMMITTED,
886 CDMA_OTA_PROVISION_STATUS_OTAPA_STARTED,
887 CDMA_OTA_PROVISION_STATUS_OTAPA_STOPPED,
888 CDMA_OTA_PROVISION_STATUS_OTAPA_ABORTED
889} RIL_CDMA_OTA_ProvisionStatus;
890
891typedef struct {
892 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
893 int bitErrorRate; /* bit error rate (0-7, 99) as defined in TS 27.007 8.5 */
894} RIL_GW_SignalStrength;
895
Wink Savillec57b3eb2013-04-17 12:51:41 -0700896typedef struct {
897 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
898 int bitErrorRate; /* bit error rate (0-7, 99) as defined in TS 27.007 8.5 */
899} RIL_SignalStrengthWcdma;
Wink Saville1b5fd232009-04-22 14:50:00 -0700900
901typedef struct {
902 int dbm; /* Valid values are positive integers. This value is the actual RSSI value
903 * multiplied by -1. Example: If the actual RSSI is -75, then this response
904 * value will be 75.
905 */
906 int ecio; /* Valid values are positive integers. This value is the actual Ec/Io multiplied
907 * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
908 * will be 125.
909 */
910} RIL_CDMA_SignalStrength;
911
912
913typedef struct {
914 int dbm; /* Valid values are positive integers. This value is the actual RSSI value
915 * multiplied by -1. Example: If the actual RSSI is -75, then this response
916 * value will be 75.
917 */
918 int ecio; /* Valid values are positive integers. This value is the actual Ec/Io multiplied
919 * by -10. Example: If the actual Ec/Io is -12.5 dB, then this response value
920 * will be 125.
921 */
922 int signalNoiseRatio; /* Valid values are 0-8. 8 is the highest signal to noise ratio. */
923} RIL_EVDO_SignalStrength;
924
Wink Savillec0114b32011-02-18 10:14:07 -0800925typedef struct {
926 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
Wink Saville473adc92011-06-13 10:24:09 -0700927 int rsrp; /* The current Reference Signal Receive Power in dBm multipled by -1.
928 * Range: 44 to 140 dBm
929 * INT_MAX: 0x7FFFFFFF denotes invalid value.
930 * Reference: 3GPP TS 36.133 9.1.4 */
931 int rsrq; /* The current Reference Signal Receive Quality in dB multiplied by -1.
932 * Range: 20 to 3 dB.
933 * INT_MAX: 0x7FFFFFFF denotes invalid value.
934 * Reference: 3GPP TS 36.133 9.1.7 */
935 int rssnr; /* The current reference signal signal-to-noise ratio in 0.1 dB units.
936 * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
937 * INT_MAX : 0x7FFFFFFF denotes invalid value.
938 * Reference: 3GPP TS 36.101 8.1.1 */
939 int cqi; /* The current Channel Quality Indicator.
940 * Range: 0 to 15.
941 * INT_MAX : 0x7FFFFFFF denotes invalid value.
942 * Reference: 3GPP TS 36.101 9.2, 9.3, A.4 */
Wink Savillec0114b32011-02-18 10:14:07 -0800943} RIL_LTE_SignalStrength;
944
Wink Saville8a9e0212013-04-09 12:11:38 -0700945typedef struct {
946 int signalStrength; /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
947 int rsrp; /* The current Reference Signal Receive Power in dBm multipled by -1.
948 * Range: 44 to 140 dBm
949 * INT_MAX: 0x7FFFFFFF denotes invalid value.
950 * Reference: 3GPP TS 36.133 9.1.4 */
951 int rsrq; /* The current Reference Signal Receive Quality in dB multiplied by -1.
952 * Range: 20 to 3 dB.
953 * INT_MAX: 0x7FFFFFFF denotes invalid value.
954 * Reference: 3GPP TS 36.133 9.1.7 */
955 int rssnr; /* The current reference signal signal-to-noise ratio in 0.1 dB units.
956 * Range: -200 to +300 (-200 = -20.0 dB, +300 = 30dB).
957 * INT_MAX : 0x7FFFFFFF denotes invalid value.
958 * Reference: 3GPP TS 36.101 8.1.1 */
959 int cqi; /* The current Channel Quality Indicator.
960 * Range: 0 to 15.
961 * INT_MAX : 0x7FFFFFFF denotes invalid value.
962 * Reference: 3GPP TS 36.101 9.2, 9.3, A.4 */
963 int timingAdvance; /* timing advance in micro seconds for a one way trip from cell to device.
964 * Approximate distance can be calculated using 300m/us * timingAdvance.
965 * Range: 0 to 0x7FFFFFFE
966 * INT_MAX : 0x7FFFFFFF denotes invalid value.
967 * Reference: 3GPP 36.321 section 6.1.3.5
968 * also: http://www.cellular-planningoptimization.com/2010/02/timing-advance-with-calculation.html */
969} RIL_LTE_SignalStrength_v8;
970
Etan Cohend3652192014-06-20 08:28:44 -0700971typedef struct {
972 int rscp; /* The Received Signal Code Power in dBm multipled by -1.
973 * Range : 25 to 120
974 * INT_MAX: 0x7FFFFFFF denotes invalid value.
975 * Reference: 3GPP TS 25.123, section 9.1.1.1 */
976} RIL_TD_SCDMA_SignalStrength;
977
Wink Savillec0114b32011-02-18 10:14:07 -0800978/* Deprecated, use RIL_SignalStrength_v6 */
979typedef struct {
980 RIL_GW_SignalStrength GW_SignalStrength;
981 RIL_CDMA_SignalStrength CDMA_SignalStrength;
982 RIL_EVDO_SignalStrength EVDO_SignalStrength;
983} RIL_SignalStrength_v5;
Wink Saville1b5fd232009-04-22 14:50:00 -0700984
985typedef struct {
986 RIL_GW_SignalStrength GW_SignalStrength;
987 RIL_CDMA_SignalStrength CDMA_SignalStrength;
988 RIL_EVDO_SignalStrength EVDO_SignalStrength;
Wink Savillec0114b32011-02-18 10:14:07 -0800989 RIL_LTE_SignalStrength LTE_SignalStrength;
990} RIL_SignalStrength_v6;
Wink Saville1b5fd232009-04-22 14:50:00 -0700991
Wink Saville8a9e0212013-04-09 12:11:38 -0700992typedef struct {
993 RIL_GW_SignalStrength GW_SignalStrength;
994 RIL_CDMA_SignalStrength CDMA_SignalStrength;
995 RIL_EVDO_SignalStrength EVDO_SignalStrength;
996 RIL_LTE_SignalStrength_v8 LTE_SignalStrength;
997} RIL_SignalStrength_v8;
998
Etan Cohend3652192014-06-20 08:28:44 -0700999typedef struct {
1000 RIL_GW_SignalStrength GW_SignalStrength;
1001 RIL_CDMA_SignalStrength CDMA_SignalStrength;
1002 RIL_EVDO_SignalStrength EVDO_SignalStrength;
1003 RIL_LTE_SignalStrength_v8 LTE_SignalStrength;
1004 RIL_TD_SCDMA_SignalStrength TD_SCDMA_SignalStrength;
1005} RIL_SignalStrength_v10;
1006
Wink Saville8a9e0212013-04-09 12:11:38 -07001007/** RIL_CellIdentityGsm */
1008typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -07001009 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
1010 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
1011 int lac; /* 16-bit Location Area Code, 0..65535, INT_MAX if unknown */
1012 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 -07001013} RIL_CellIdentityGsm;
1014
Wink Savillec57b3eb2013-04-17 12:51:41 -07001015/** RIL_CellIdentityWcdma */
1016typedef struct {
1017 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
1018 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
1019 int lac; /* 16-bit Location Area Code, 0..65535, INT_MAX if unknown */
1020 int cid; /* 28-bit UMTS Cell Identity described in TS 25.331, 0..268435455, INT_MAX if unknown */
1021 int psc; /* 9-bit UMTS Primary Scrambling Code described in TS 25.331, 0..511, INT_MAX if unknown */
1022} RIL_CellIdentityWcdma;
1023
Wink Saville8a9e0212013-04-09 12:11:38 -07001024/** RIL_CellIdentityCdma */
1025typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -07001026 int networkId; /* Network Id 0..65535, INT_MAX if unknown */
1027 int systemId; /* CDMA System Id 0..32767, INT_MAX if unknown */
1028 int basestationId; /* Base Station Id 0..65535, INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -07001029 int longitude; /* Longitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
1030 * It is represented in units of 0.25 seconds and ranges from -2592000
1031 * to 2592000, both values inclusive (corresponding to a range of -180
Wink Savillec57b3eb2013-04-17 12:51:41 -07001032 * to +180 degrees). INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -07001033
1034 int latitude; /* Latitude is a decimal number as specified in 3GPP2 C.S0005-A v6.0.
1035 * It is represented in units of 0.25 seconds and ranges from -1296000
1036 * to 1296000, both values inclusive (corresponding to a range of -90
Wink Savillec57b3eb2013-04-17 12:51:41 -07001037 * to +90 degrees). INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -07001038} RIL_CellIdentityCdma;
1039
1040/** RIL_CellIdentityLte */
1041typedef struct {
Wink Savillec57b3eb2013-04-17 12:51:41 -07001042 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
1043 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
1044 int ci; /* 28-bit Cell Identity described in TS ???, INT_MAX if unknown */
1045 int pci; /* physical cell id 0..503, INT_MAX if unknown */
1046 int tac; /* 16-bit tracking area code, INT_MAX if unknown */
Wink Saville8a9e0212013-04-09 12:11:38 -07001047} RIL_CellIdentityLte;
1048
Etan Cohend3652192014-06-20 08:28:44 -07001049/** RIL_CellIdentityTdscdma */
1050typedef struct {
1051 int mcc; /* 3-digit Mobile Country Code, 0..999, INT_MAX if unknown */
1052 int mnc; /* 2 or 3-digit Mobile Network Code, 0..999, INT_MAX if unknown */
1053 int lac; /* 16-bit Location Area Code, 0..65535, INT_MAX if unknown */
1054 int cid; /* 28-bit UMTS Cell Identity described in TS 25.331, 0..268435455, INT_MAX if unknown */
1055 int cpid; /* 8-bit Cell Parameters ID described in TS 25.331, 0..127, INT_MAX if unknown */
1056} RIL_CellIdentityTdscdma;
1057
Wink Saville8a9e0212013-04-09 12:11:38 -07001058/** RIL_CellInfoGsm */
1059typedef struct {
1060 RIL_CellIdentityGsm cellIdentityGsm;
1061 RIL_GW_SignalStrength signalStrengthGsm;
1062} RIL_CellInfoGsm;
1063
Wink Savillec57b3eb2013-04-17 12:51:41 -07001064/** RIL_CellInfoWcdma */
1065typedef struct {
1066 RIL_CellIdentityWcdma cellIdentityWcdma;
1067 RIL_SignalStrengthWcdma signalStrengthWcdma;
1068} RIL_CellInfoWcdma;
1069
Wink Saville8a9e0212013-04-09 12:11:38 -07001070/** RIL_CellInfoCdma */
1071typedef struct {
1072 RIL_CellIdentityCdma cellIdentityCdma;
1073 RIL_CDMA_SignalStrength signalStrengthCdma;
1074 RIL_EVDO_SignalStrength signalStrengthEvdo;
1075} RIL_CellInfoCdma;
1076
1077/** RIL_CellInfoLte */
1078typedef struct {
1079 RIL_CellIdentityLte cellIdentityLte;
1080 RIL_LTE_SignalStrength_v8 signalStrengthLte;
1081} RIL_CellInfoLte;
1082
Etan Cohend3652192014-06-20 08:28:44 -07001083/** RIL_CellInfoTdscdma */
1084typedef struct {
1085 RIL_CellIdentityTdscdma cellIdentityTdscdma;
1086 RIL_TD_SCDMA_SignalStrength signalStrengthTdscdma;
1087} RIL_CellInfoTdscdma;
1088
Wink Saville8a9e0212013-04-09 12:11:38 -07001089// Must be the same as CellInfo.TYPE_XXX
1090typedef enum {
1091 RIL_CELL_INFO_TYPE_GSM = 1,
1092 RIL_CELL_INFO_TYPE_CDMA = 2,
1093 RIL_CELL_INFO_TYPE_LTE = 3,
Wink Savillec57b3eb2013-04-17 12:51:41 -07001094 RIL_CELL_INFO_TYPE_WCDMA = 4,
Etan Cohend3652192014-06-20 08:28:44 -07001095 RIL_CELL_INFO_TYPE_TD_SCDMA = 5
Wink Saville8a9e0212013-04-09 12:11:38 -07001096} RIL_CellInfoType;
1097
1098// Must be the same as CellInfo.TIMESTAMP_TYPE_XXX
1099typedef enum {
1100 RIL_TIMESTAMP_TYPE_UNKNOWN = 0,
1101 RIL_TIMESTAMP_TYPE_ANTENNA = 1,
1102 RIL_TIMESTAMP_TYPE_MODEM = 2,
1103 RIL_TIMESTAMP_TYPE_OEM_RIL = 3,
1104 RIL_TIMESTAMP_TYPE_JAVA_RIL = 4,
1105} RIL_TimeStampType;
1106
1107typedef struct {
1108 RIL_CellInfoType cellInfoType; /* cell type for selecting from union CellInfo */
1109 int registered; /* !0 if this cell is registered 0 if not registered */
1110 RIL_TimeStampType timeStampType; /* type of time stamp represented by timeStamp */
1111 uint64_t timeStamp; /* Time in nanos as returned by ril_nano_time */
1112 union {
1113 RIL_CellInfoGsm gsm;
1114 RIL_CellInfoCdma cdma;
1115 RIL_CellInfoLte lte;
Wink Savillec57b3eb2013-04-17 12:51:41 -07001116 RIL_CellInfoWcdma wcdma;
Etan Cohend3652192014-06-20 08:28:44 -07001117 RIL_CellInfoTdscdma tdscdma;
Wink Saville8a9e0212013-04-09 12:11:38 -07001118 } CellInfo;
1119} RIL_CellInfo;
1120
Wink Saville1b5fd232009-04-22 14:50:00 -07001121/* Names of the CDMA info records (C.S0005 section 3.7.5) */
1122typedef enum {
1123 RIL_CDMA_DISPLAY_INFO_REC,
1124 RIL_CDMA_CALLED_PARTY_NUMBER_INFO_REC,
1125 RIL_CDMA_CALLING_PARTY_NUMBER_INFO_REC,
1126 RIL_CDMA_CONNECTED_NUMBER_INFO_REC,
1127 RIL_CDMA_SIGNAL_INFO_REC,
1128 RIL_CDMA_REDIRECTING_NUMBER_INFO_REC,
1129 RIL_CDMA_LINE_CONTROL_INFO_REC,
1130 RIL_CDMA_EXTENDED_DISPLAY_INFO_REC,
1131 RIL_CDMA_T53_CLIR_INFO_REC,
1132 RIL_CDMA_T53_RELEASE_INFO_REC,
1133 RIL_CDMA_T53_AUDIO_CONTROL_INFO_REC
1134} RIL_CDMA_InfoRecName;
1135
1136/* Display Info Rec as defined in C.S0005 section 3.7.5.1
1137 Extended Display Info Rec as defined in C.S0005 section 3.7.5.16
1138 Note: the Extended Display info rec contains multiple records of the
1139 form: display_tag, display_len, and display_len occurrences of the
1140 chari field if the display_tag is not 10000000 or 10000001.
1141 To save space, the records are stored consecutively in a byte buffer.
1142 The display_tag, display_len and chari fields are all 1 byte.
1143*/
1144
1145typedef struct {
1146 char alpha_len;
Wink Savillea592eeb2009-05-22 13:26:36 -07001147 char alpha_buf[CDMA_ALPHA_INFO_BUFFER_LENGTH];
Wink Saville1b5fd232009-04-22 14:50:00 -07001148} RIL_CDMA_DisplayInfoRecord;
1149
1150/* Called Party Number Info Rec as defined in C.S0005 section 3.7.5.2
1151 Calling Party Number Info Rec as defined in C.S0005 section 3.7.5.3
1152 Connected Number Info Rec as defined in C.S0005 section 3.7.5.4
1153*/
1154
1155typedef struct {
1156 char len;
Wink Savillea592eeb2009-05-22 13:26:36 -07001157 char buf[CDMA_NUMBER_INFO_BUFFER_LENGTH];
Wink Saville1b5fd232009-04-22 14:50:00 -07001158 char number_type;
1159 char number_plan;
1160 char pi;
1161 char si;
1162} RIL_CDMA_NumberInfoRecord;
1163
1164/* Redirecting Number Information Record as defined in C.S0005 section 3.7.5.11 */
1165typedef enum {
1166 RIL_REDIRECTING_REASON_UNKNOWN = 0,
1167 RIL_REDIRECTING_REASON_CALL_FORWARDING_BUSY = 1,
1168 RIL_REDIRECTING_REASON_CALL_FORWARDING_NO_REPLY = 2,
1169 RIL_REDIRECTING_REASON_CALLED_DTE_OUT_OF_ORDER = 9,
1170 RIL_REDIRECTING_REASON_CALL_FORWARDING_BY_THE_CALLED_DTE = 10,
1171 RIL_REDIRECTING_REASON_CALL_FORWARDING_UNCONDITIONAL = 15,
1172 RIL_REDIRECTING_REASON_RESERVED
1173} RIL_CDMA_RedirectingReason;
1174
1175typedef struct {
1176 RIL_CDMA_NumberInfoRecord redirectingNumber;
1177 /* redirectingReason is set to RIL_REDIRECTING_REASON_UNKNOWN if not included */
1178 RIL_CDMA_RedirectingReason redirectingReason;
1179} RIL_CDMA_RedirectingNumberInfoRecord;
1180
1181/* Line Control Information Record as defined in C.S0005 section 3.7.5.15 */
1182typedef struct {
1183 char lineCtrlPolarityIncluded;
1184 char lineCtrlToggle;
1185 char lineCtrlReverse;
1186 char lineCtrlPowerDenial;
1187} RIL_CDMA_LineControlInfoRecord;
1188
1189/* T53 CLIR Information Record */
1190typedef struct {
1191 char cause;
1192} RIL_CDMA_T53_CLIRInfoRecord;
1193
1194/* T53 Audio Control Information Record */
1195typedef struct {
1196 char upLink;
1197 char downLink;
1198} RIL_CDMA_T53_AudioControlInfoRecord;
1199
1200typedef struct {
1201
1202 RIL_CDMA_InfoRecName name;
1203
1204 union {
1205 /* Display and Extended Display Info Rec */
1206 RIL_CDMA_DisplayInfoRecord display;
1207
1208 /* Called Party Number, Calling Party Number, Connected Number Info Rec */
1209 RIL_CDMA_NumberInfoRecord number;
1210
1211 /* Signal Info Rec */
1212 RIL_CDMA_SignalInfoRecord signal;
1213
1214 /* Redirecting Number Info Rec */
1215 RIL_CDMA_RedirectingNumberInfoRecord redir;
1216
1217 /* Line Control Info Rec */
1218 RIL_CDMA_LineControlInfoRecord lineCtrl;
1219
1220 /* T53 CLIR Info Rec */
1221 RIL_CDMA_T53_CLIRInfoRecord clir;
1222
1223 /* T53 Audio Control Info Rec */
1224 RIL_CDMA_T53_AudioControlInfoRecord audioCtrl;
1225 } rec;
1226} RIL_CDMA_InformationRecord;
1227
1228#define RIL_CDMA_MAX_NUMBER_OF_INFO_RECS 10
1229
1230typedef struct {
1231 char numberOfInfoRecs;
1232 RIL_CDMA_InformationRecord infoRec[RIL_CDMA_MAX_NUMBER_OF_INFO_RECS];
1233} RIL_CDMA_InformationRecords;
1234
Jake Hamby8a4a2332014-01-15 13:12:05 -08001235/* See RIL_REQUEST_NV_READ_ITEM */
1236typedef struct {
1237 RIL_NV_Item itemID;
1238} RIL_NV_ReadItem;
1239
1240/* See RIL_REQUEST_NV_WRITE_ITEM */
1241typedef struct {
1242 RIL_NV_Item itemID;
1243 char * value;
1244} RIL_NV_WriteItem;
1245
Etan Cohend3652192014-06-20 08:28:44 -07001246typedef enum {
1247 HANDOVER_STARTED = 0,
1248 HANDOVER_COMPLETED = 1,
1249 HANDOVER_FAILED = 2,
1250 HANDOVER_CANCELED = 3
1251} RIL_SrvccState;
1252
1253/* hardware configuration reported to RILJ. */
1254typedef enum {
1255 RIL_HARDWARE_CONFIG_MODEM = 0,
1256 RIL_HARDWARE_CONFIG_SIM = 1,
1257} RIL_HardwareConfig_Type;
1258
1259typedef enum {
1260 RIL_HARDWARE_CONFIG_STATE_ENABLED = 0,
1261 RIL_HARDWARE_CONFIG_STATE_STANDBY = 1,
1262 RIL_HARDWARE_CONFIG_STATE_DISABLED = 2,
1263} RIL_HardwareConfig_State;
1264
1265typedef struct {
1266 int rilModel;
1267 uint32_t rat; /* bitset - ref. RIL_RadioTechnology. */
1268 int maxVoice;
1269 int maxData;
1270 int maxStandby;
1271} RIL_HardwareConfig_Modem;
1272
1273typedef struct {
Wink Saville8b4e4f72014-10-17 15:01:45 -07001274 char modemUuid[MAX_UUID_LENGTH];
Etan Cohend3652192014-06-20 08:28:44 -07001275} RIL_HardwareConfig_Sim;
1276
1277typedef struct {
1278 RIL_HardwareConfig_Type type;
Wink Saville8b4e4f72014-10-17 15:01:45 -07001279 char uuid[MAX_UUID_LENGTH];
Etan Cohend3652192014-06-20 08:28:44 -07001280 RIL_HardwareConfig_State state;
1281 union {
1282 RIL_HardwareConfig_Modem modem;
1283 RIL_HardwareConfig_Sim sim;
1284 } cfg;
1285} RIL_HardwareConfig;
1286
Amit Mahajan54563d32014-11-22 00:54:49 +00001287typedef enum {
1288 SS_CFU,
1289 SS_CF_BUSY,
1290 SS_CF_NO_REPLY,
1291 SS_CF_NOT_REACHABLE,
1292 SS_CF_ALL,
1293 SS_CF_ALL_CONDITIONAL,
1294 SS_CLIP,
1295 SS_CLIR,
1296 SS_COLP,
1297 SS_COLR,
1298 SS_WAIT,
1299 SS_BAOC,
1300 SS_BAOIC,
1301 SS_BAOIC_EXC_HOME,
1302 SS_BAIC,
1303 SS_BAIC_ROAMING,
1304 SS_ALL_BARRING,
1305 SS_OUTGOING_BARRING,
1306 SS_INCOMING_BARRING
1307} RIL_SsServiceType;
1308
1309typedef enum {
1310 SS_ACTIVATION,
1311 SS_DEACTIVATION,
1312 SS_INTERROGATION,
1313 SS_REGISTRATION,
1314 SS_ERASURE
1315} RIL_SsRequestType;
1316
1317typedef enum {
1318 SS_ALL_TELE_AND_BEARER_SERVICES,
1319 SS_ALL_TELESEVICES,
1320 SS_TELEPHONY,
1321 SS_ALL_DATA_TELESERVICES,
1322 SS_SMS_SERVICES,
1323 SS_ALL_TELESERVICES_EXCEPT_SMS
1324} RIL_SsTeleserviceType;
1325
1326#define SS_INFO_MAX 4
1327#define NUM_SERVICE_CLASSES 7
1328
1329typedef struct {
1330 int numValidIndexes; /* This gives the number of valid values in cfInfo.
1331 For example if voice is forwarded to one number and data
1332 is forwarded to a different one then numValidIndexes will be
1333 2 indicating total number of valid values in cfInfo.
1334 Similarly if all the services are forwarded to the same
1335 number then the value of numValidIndexes will be 1. */
1336
1337 RIL_CallForwardInfo cfInfo[NUM_SERVICE_CLASSES]; /* This is the response data
1338 for SS request to query call
1339 forward status. see
1340 RIL_REQUEST_QUERY_CALL_FORWARD_STATUS */
1341} RIL_CfData;
1342
1343typedef struct {
1344 RIL_SsServiceType serviceType;
1345 RIL_SsRequestType requestType;
1346 RIL_SsTeleserviceType teleserviceType;
1347 int serviceClass;
1348 RIL_Errno result;
1349
1350 union {
1351 int ssInfo[SS_INFO_MAX]; /* This is the response data for most of the SS GET/SET
1352 RIL requests. E.g. RIL_REQUSET_GET_CLIR returns
1353 two ints, so first two values of ssInfo[] will be
1354 used for response if serviceType is SS_CLIR and
1355 requestType is SS_INTERROGATION */
1356
1357 RIL_CfData cfData;
1358 };
1359} RIL_StkCcUnsolSsResponse;
1360
Wink Saville7f856802009-06-09 10:23:37 -07001361/**
Wink Savillec29360a2014-07-13 05:17:28 -07001362 * Data connection power state
1363 */
1364typedef enum {
1365 RIL_DC_POWER_STATE_LOW = 1, // Low power state
1366 RIL_DC_POWER_STATE_MEDIUM = 2, // Medium power state
1367 RIL_DC_POWER_STATE_HIGH = 3, // High power state
1368 RIL_DC_POWER_STATE_UNKNOWN = INT32_MAX // Unknown state
1369} RIL_DcPowerStates;
1370
1371/**
1372 * Data connection real time info
1373 */
1374typedef struct {
1375 uint64_t time; // Time in nanos as returned by ril_nano_time
1376 RIL_DcPowerStates powerState; // Current power state
1377} RIL_DcRtInfo;
1378
Amit Mahajanc796e222014-08-13 16:54:01 +00001379/**
1380 * Data profile to modem
1381 */
1382typedef struct {
1383 /* id of the data profile */
1384 int profileId;
1385 /* the APN to connect to */
1386 char* apn;
1387 /** one of the PDP_type values in TS 27.007 section 10.1.1.
1388 * For example, "IP", "IPV6", "IPV4V6", or "PPP".
1389 */
1390 char* protocol;
1391 /** authentication protocol used for this PDP context
1392 * (None: 0, PAP: 1, CHAP: 2, PAP&CHAP: 3)
1393 */
1394 int authType;
1395 /* the username for APN, or NULL */
1396 char* user;
1397 /* the password for APN, or NULL */
1398 char* password;
1399 /* the profile type, TYPE_COMMON-0, TYPE_3GPP-1, TYPE_3GPP2-2 */
1400 int type;
1401 /* the period in seconds to limit the maximum connections */
1402 int maxConnsTime;
1403 /* the maximum connections during maxConnsTime */
1404 int maxConns;
1405 /** the required wait time in seconds after a successful UE initiated
1406 * disconnect of a given PDN connection before the device can send
1407 * a new PDN connection request for that given PDN
1408 */
1409 int waitTime;
1410 /* true to enable the profile, 0 to disable, 1 to enable */
1411 int enabled;
1412} RIL_DataProfileInfo;
Wink Savillec29360a2014-07-13 05:17:28 -07001413
1414/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001415 * RIL_REQUEST_GET_SIM_STATUS
1416 *
1417 * Requests status of the SIM interface and the SIM card
Wink Saville7f856802009-06-09 10:23:37 -07001418 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001419 * "data" is NULL
1420 *
Wink Savillefd729372011-02-22 16:19:39 -08001421 * "response" is const RIL_CardStatus_v6 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001422 *
1423 * Valid errors:
1424 * Must never fail
1425 */
1426#define RIL_REQUEST_GET_SIM_STATUS 1
1427
1428/**
1429 * RIL_REQUEST_ENTER_SIM_PIN
1430 *
John Wang309ac292009-07-30 14:53:23 -07001431 * Supplies SIM PIN. Only called if RIL_CardStatus has RIL_APPSTATE_PIN state
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001432 *
1433 * "data" is const char **
1434 * ((const char **)data)[0] is PIN value
Wink Savillec0114b32011-02-18 10:14:07 -08001435 * ((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 -08001436 *
jsh593c9102009-06-24 16:13:44 -07001437 * "response" is int *
1438 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001439 *
1440 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001441 *
1442 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001443 * RADIO_NOT_AVAILABLE (radio resetting)
1444 * GENERIC_FAILURE
1445 * PASSWORD_INCORRECT
1446 */
1447
1448#define RIL_REQUEST_ENTER_SIM_PIN 2
1449
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001450/**
1451 * RIL_REQUEST_ENTER_SIM_PUK
1452 *
Wink Saville7f856802009-06-09 10:23:37 -07001453 * Supplies SIM PUK and new PIN.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001454 *
1455 * "data" is const char **
1456 * ((const char **)data)[0] is PUK value
1457 * ((const char **)data)[1] is new PIN value
Wink Savillec0114b32011-02-18 10:14:07 -08001458 * ((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 -08001459 *
jsh593c9102009-06-24 16:13:44 -07001460 * "response" is int *
1461 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001462 *
1463 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001464 *
1465 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001466 * RADIO_NOT_AVAILABLE (radio resetting)
1467 * GENERIC_FAILURE
1468 * PASSWORD_INCORRECT
1469 * (PUK is invalid)
1470 */
1471
1472#define RIL_REQUEST_ENTER_SIM_PUK 3
1473
1474/**
1475 * RIL_REQUEST_ENTER_SIM_PIN2
1476 *
1477 * Supplies SIM PIN2. Only called following operation where SIM_PIN2 was
1478 * returned as a a failure from a previous operation.
1479 *
1480 * "data" is const char **
1481 * ((const char **)data)[0] is PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001482 * ((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 -08001483 *
jsh593c9102009-06-24 16:13:44 -07001484 * "response" is int *
1485 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001486 *
1487 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001488 *
1489 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001490 * RADIO_NOT_AVAILABLE (radio resetting)
1491 * GENERIC_FAILURE
1492 * PASSWORD_INCORRECT
1493 */
1494
1495#define RIL_REQUEST_ENTER_SIM_PIN2 4
1496
1497/**
1498 * RIL_REQUEST_ENTER_SIM_PUK2
1499 *
Wink Saville7f856802009-06-09 10:23:37 -07001500 * Supplies SIM PUK2 and new PIN2.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001501 *
1502 * "data" is const char **
1503 * ((const char **)data)[0] is PUK2 value
1504 * ((const char **)data)[1] is new PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001505 * ((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 -08001506 *
jsh593c9102009-06-24 16:13:44 -07001507 * "response" is int *
1508 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001509 *
1510 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001511 *
1512 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001513 * RADIO_NOT_AVAILABLE (radio resetting)
1514 * GENERIC_FAILURE
1515 * PASSWORD_INCORRECT
1516 * (PUK2 is invalid)
1517 */
1518
1519#define RIL_REQUEST_ENTER_SIM_PUK2 5
1520
1521/**
1522 * RIL_REQUEST_CHANGE_SIM_PIN
1523 *
Wink Saville7f856802009-06-09 10:23:37 -07001524 * Supplies old SIM PIN and new PIN.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001525 *
1526 * "data" is const char **
1527 * ((const char **)data)[0] is old PIN value
1528 * ((const char **)data)[1] is new PIN value
Wink Savillec0114b32011-02-18 10:14:07 -08001529 * ((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 -08001530 *
jsh593c9102009-06-24 16:13:44 -07001531 * "response" is int *
1532 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001533 *
1534 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001535 *
1536 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001537 * RADIO_NOT_AVAILABLE (radio resetting)
1538 * GENERIC_FAILURE
1539 * PASSWORD_INCORRECT
1540 * (old PIN is invalid)
Wink Saville7f856802009-06-09 10:23:37 -07001541 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001542 */
1543
1544#define RIL_REQUEST_CHANGE_SIM_PIN 6
1545
1546
1547/**
1548 * RIL_REQUEST_CHANGE_SIM_PIN2
1549 *
Wink Saville7f856802009-06-09 10:23:37 -07001550 * Supplies old SIM PIN2 and new PIN2.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001551 *
1552 * "data" is const char **
1553 * ((const char **)data)[0] is old PIN2 value
1554 * ((const char **)data)[1] is new PIN2 value
Wink Savillec0114b32011-02-18 10:14:07 -08001555 * ((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 -08001556 *
jsh593c9102009-06-24 16:13:44 -07001557 * "response" is int *
1558 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001559 *
1560 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001561 *
1562 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001563 * RADIO_NOT_AVAILABLE (radio resetting)
1564 * GENERIC_FAILURE
1565 * PASSWORD_INCORRECT
1566 * (old PIN2 is invalid)
Wink Saville7f856802009-06-09 10:23:37 -07001567 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001568 */
1569
1570#define RIL_REQUEST_CHANGE_SIM_PIN2 7
1571
1572/**
1573 * RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION
1574 *
1575 * Requests that network personlization be deactivated
1576 *
1577 * "data" is const char **
1578 * ((const char **)(data))[0]] is network depersonlization code
1579 *
jsh593c9102009-06-24 16:13:44 -07001580 * "response" is int *
1581 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001582 *
1583 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001584 *
1585 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001586 * RADIO_NOT_AVAILABLE (radio resetting)
1587 * GENERIC_FAILURE
1588 * PASSWORD_INCORRECT
1589 * (code is invalid)
1590 */
1591
1592#define RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION 8
1593
1594/**
Wink Saville7f856802009-06-09 10:23:37 -07001595 * RIL_REQUEST_GET_CURRENT_CALLS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001596 *
1597 * Requests current call list
1598 *
1599 * "data" is NULL
1600 *
1601 * "response" must be a "const RIL_Call **"
Wink Saville7f856802009-06-09 10:23:37 -07001602 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001603 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001604 *
1605 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001606 * RADIO_NOT_AVAILABLE (radio resetting)
1607 * GENERIC_FAILURE
1608 * (request will be made again in a few hundred msec)
1609 */
1610
1611#define RIL_REQUEST_GET_CURRENT_CALLS 9
1612
1613
Wink Saville7f856802009-06-09 10:23:37 -07001614/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001615 * RIL_REQUEST_DIAL
1616 *
1617 * Initiate voice call
1618 *
1619 * "data" is const RIL_Dial *
1620 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07001621 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001622 * This method is never used for supplementary service codes
1623 *
1624 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001625 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001626 * RADIO_NOT_AVAILABLE (radio resetting)
Amit Mahajan54563d32014-11-22 00:54:49 +00001627 * DIAL_MODIFIED_TO_USSD
1628 * DIAL_MODIFIED_TO_SS
1629 * DIAL_MODIFIED_TO_DIAL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001630 * GENERIC_FAILURE
1631 */
1632#define RIL_REQUEST_DIAL 10
1633
1634/**
1635 * RIL_REQUEST_GET_IMSI
1636 *
1637 * Get the SIM IMSI
1638 *
Naveen Kalla2bc78d62011-12-07 16:22:53 -08001639 * Only valid when radio state is "RADIO_STATE_ON"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001640 *
Wink Savillec0114b32011-02-18 10:14:07 -08001641 * "data" is const char **
1642 * ((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 -08001643 * "response" is a const char * containing the IMSI
1644 *
1645 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001646 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001647 * RADIO_NOT_AVAILABLE (radio resetting)
1648 * GENERIC_FAILURE
1649 */
1650
1651#define RIL_REQUEST_GET_IMSI 11
1652
1653/**
1654 * RIL_REQUEST_HANGUP
1655 *
1656 * Hang up a specific line (like AT+CHLD=1x)
1657 *
John Wang06bae4b2010-11-18 16:37:09 -08001658 * After this HANGUP request returns, RIL should show the connection is NOT
1659 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1660 *
Wink Saville7f856802009-06-09 10:23:37 -07001661 * "data" is an int *
Wink Savillef4c4d362009-04-02 01:37:03 -07001662 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001663 *
1664 * "response" is NULL
1665 *
1666 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001667 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001668 * RADIO_NOT_AVAILABLE (radio resetting)
1669 * GENERIC_FAILURE
1670 */
1671
1672#define RIL_REQUEST_HANGUP 12
1673
1674/**
1675 * RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND
1676 *
1677 * Hang up waiting or held (like AT+CHLD=0)
1678 *
John Wang06bae4b2010-11-18 16:37:09 -08001679 * After this HANGUP request returns, RIL should show the connection is NOT
1680 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1681 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001682 * "data" is NULL
1683 * "response" is NULL
1684 *
1685 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001686 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001687 * RADIO_NOT_AVAILABLE (radio resetting)
1688 * GENERIC_FAILURE
1689 */
1690
1691#define RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND 13
1692
1693/**
1694 * RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND
1695 *
1696 * Hang up waiting or held (like AT+CHLD=1)
1697 *
John Wang06bae4b2010-11-18 16:37:09 -08001698 * After this HANGUP request returns, RIL should show the connection is NOT
1699 * active anymore in next RIL_REQUEST_GET_CURRENT_CALLS query.
1700 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001701 * "data" is NULL
1702 * "response" is NULL
1703 *
1704 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001705 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001706 * RADIO_NOT_AVAILABLE (radio resetting)
1707 * GENERIC_FAILURE
1708 */
1709
1710#define RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND 14
1711
1712/**
1713 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE
1714 *
1715 * Switch waiting or holding call and active call (like AT+CHLD=2)
1716 *
1717 * State transitions should be is follows:
1718 *
1719 * If call 1 is waiting and call 2 is active, then if this re
1720 *
1721 * BEFORE AFTER
1722 * Call 1 Call 2 Call 1 Call 2
1723 * ACTIVE HOLDING HOLDING ACTIVE
1724 * ACTIVE WAITING HOLDING ACTIVE
1725 * HOLDING WAITING HOLDING ACTIVE
1726 * ACTIVE IDLE HOLDING IDLE
1727 * IDLE IDLE IDLE IDLE
1728 *
1729 * "data" is NULL
1730 * "response" is NULL
1731 *
1732 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001733 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001734 * RADIO_NOT_AVAILABLE (radio resetting)
1735 * GENERIC_FAILURE
1736 */
1737
1738#define RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE 15
1739#define RIL_REQUEST_SWITCH_HOLDING_AND_ACTIVE 15
1740
1741/**
1742 * RIL_REQUEST_CONFERENCE
1743 *
1744 * Conference holding and active (like AT+CHLD=3)
1745
1746 * "data" is NULL
1747 * "response" is NULL
1748 *
1749 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001750 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001751 * RADIO_NOT_AVAILABLE (radio resetting)
1752 * GENERIC_FAILURE
1753 */
1754#define RIL_REQUEST_CONFERENCE 16
1755
1756/**
1757 * RIL_REQUEST_UDUB
1758 *
Wink Saville7f856802009-06-09 10:23:37 -07001759 * Send UDUB (user determined used busy) to ringing or
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001760 * waiting call answer)(RIL_BasicRequest r);
1761 *
1762 * "data" is NULL
1763 * "response" is NULL
1764 *
1765 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07001766 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001767 * RADIO_NOT_AVAILABLE (radio resetting)
1768 * GENERIC_FAILURE
1769 */
1770#define RIL_REQUEST_UDUB 17
1771
1772/**
1773 * RIL_REQUEST_LAST_CALL_FAIL_CAUSE
1774 *
1775 * Requests the failure cause code for the most recently terminated call
1776 *
1777 * "data" is NULL
1778 * "response" is a "int *"
Wink Saville1b5fd232009-04-22 14:50:00 -07001779 * ((int *)response)[0] is RIL_LastCallFailCause. GSM failure reasons are
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001780 * mapped to cause codes defined in TS 24.008 Annex H where possible. CDMA
1781 * failure reasons are derived from the possible call failure scenarios
1782 * described in the "CDMA IS-2000 Release A (C.S0005-A v6.0)" standard.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001783 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08001784 * The implementation should return CALL_FAIL_ERROR_UNSPECIFIED for blocked
1785 * MO calls by restricted state (See RIL_UNSOL_RESTRICTED_STATE_CHANGED)
1786 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001787 * If the implementation does not have access to the exact cause codes,
1788 * then it should return one of the values listed in RIL_LastCallFailCause,
1789 * as the UI layer needs to distinguish these cases for tone generation or
1790 * error notification.
1791 *
1792 * Valid errors:
1793 * SUCCESS
1794 * RADIO_NOT_AVAILABLE
1795 * GENERIC_FAILURE
1796 *
Wink Savillef4c4d362009-04-02 01:37:03 -07001797 * See also: RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001798 */
1799#define RIL_REQUEST_LAST_CALL_FAIL_CAUSE 18
1800
1801/**
1802 * RIL_REQUEST_SIGNAL_STRENGTH
1803 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001804 * Requests current signal strength and associated information
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001805 *
1806 * Must succeed if radio is on.
1807 *
1808 * "data" is NULL
Wink Saville1b5fd232009-04-22 14:50:00 -07001809 *
1810 * "response" is a const RIL_SignalStrength *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001811 *
1812 * Valid errors:
1813 * SUCCESS
1814 * RADIO_NOT_AVAILABLE
1815 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001816#define RIL_REQUEST_SIGNAL_STRENGTH 19
Wink Saville3d54e742009-05-18 18:00:44 -07001817
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001818/**
Wink Savillec0114b32011-02-18 10:14:07 -08001819 * RIL_REQUEST_VOICE_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001820 *
1821 * Request current registration state
1822 *
1823 * "data" is NULL
1824 * "response" is a "char **"
Wink Savillef4c4d362009-04-02 01:37:03 -07001825 * ((const char **)response)[0] is registration state 0-6,
Wink Saville1b5fd232009-04-22 14:50:00 -07001826 * 0 - Not registered, MT is not currently searching
1827 * a new operator to register
Wink Savillef4c4d362009-04-02 01:37:03 -07001828 * 1 - Registered, home network
Wink Saville1b5fd232009-04-22 14:50:00 -07001829 * 2 - Not registered, but MT is currently searching
1830 * a new operator to register
Wink Savillef4c4d362009-04-02 01:37:03 -07001831 * 3 - Registration denied
1832 * 4 - Unknown
1833 * 5 - Registered, roaming
John Wang7f8ded12010-01-21 15:07:28 -08001834 * 10 - Same as 0, but indicates that emergency calls
1835 * are enabled.
1836 * 12 - Same as 2, but indicates that emergency calls
1837 * are enabled.
1838 * 13 - Same as 3, but indicates that emergency calls
1839 * are enabled.
1840 * 14 - Same as 4, but indicates that emergency calls
1841 * are enabled.
1842 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001843 * ((const char **)response)[1] is LAC if registered on a GSM/WCDMA system or
1844 * NULL if not.Valid LAC are 0x0000 - 0xffff
1845 * ((const char **)response)[2] is CID if registered on a * GSM/WCDMA or
1846 * NULL if not.
1847 * Valid CID are 0x00000000 - 0xffffffff
1848 * In GSM, CID is Cell ID (see TS 27.007)
1849 * in 16 bits
1850 * In UMTS, CID is UMTS Cell Identity
1851 * (see TS 25.331) in 28 bits
Wink Saville43808972011-01-13 17:39:51 -08001852 * ((const char **)response)[3] indicates the available voice radio technology,
1853 * valid values as defined by RIL_RadioTechnology.
Wink Saville1b5fd232009-04-22 14:50:00 -07001854 * ((const char **)response)[4] is Base Station ID if registered on a CDMA
1855 * system or NULL if not. Base Station ID in
jsh29be25c2009-07-14 20:18:59 -07001856 * decimal format
Wink Saville1b5fd232009-04-22 14:50:00 -07001857 * ((const char **)response)[5] is Base Station latitude if registered on a
1858 * CDMA system or NULL if not. Base Station
Naveen Kalla36b721c2009-10-13 18:29:41 -07001859 * latitude is a decimal number as specified in
1860 * 3GPP2 C.S0005-A v6.0. It is represented in
1861 * units of 0.25 seconds and ranges from -1296000
1862 * to 1296000, both values inclusive (corresponding
Wink Saville43808972011-01-13 17:39:51 -08001863 * to a range of -90 to +90 degrees).
Wink Saville1b5fd232009-04-22 14:50:00 -07001864 * ((const char **)response)[6] is Base Station longitude if registered on a
1865 * CDMA system or NULL if not. Base Station
Naveen Kalla36b721c2009-10-13 18:29:41 -07001866 * longitude is a decimal number as specified in
1867 * 3GPP2 C.S0005-A v6.0. It is represented in
1868 * units of 0.25 seconds and ranges from -2592000
1869 * to 2592000, both values inclusive (corresponding
Wink Saville43808972011-01-13 17:39:51 -08001870 * to a range of -180 to +180 degrees).
Wink Saville1b5fd232009-04-22 14:50:00 -07001871 * ((const char **)response)[7] is concurrent services support indicator if
1872 * registered on a CDMA system 0-1.
1873 * 0 - Concurrent services not supported,
1874 * 1 - Concurrent services supported
1875 * ((const char **)response)[8] is System ID if registered on a CDMA system or
1876 * NULL if not. Valid System ID are 0 - 32767
1877 * ((const char **)response)[9] is Network ID if registered on a CDMA system or
1878 * NULL if not. Valid System ID are 0 - 65535
1879 * ((const char **)response)[10] is the TSB-58 Roaming Indicator if registered
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001880 * on a CDMA or EVDO system or NULL if not. Valid values
Wink Saville1b5fd232009-04-22 14:50:00 -07001881 * are 0-255.
1882 * ((const char **)response)[11] indicates whether the current system is in the
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001883 * PRL if registered on a CDMA or EVDO system or NULL if
Wink Saville1b5fd232009-04-22 14:50:00 -07001884 * not. 0=not in the PRL, 1=in the PRL
1885 * ((const char **)response)[12] is the default Roaming Indicator from the PRL,
Naveen Kalla03c1edf2009-09-23 11:18:35 -07001886 * if registered on a CDMA or EVDO system or NULL if not.
Wink Saville1b5fd232009-04-22 14:50:00 -07001887 * Valid values are 0-255.
1888 * ((const char **)response)[13] if registration state is 3 (Registration
1889 * denied) this is an enumerated reason why
jsh602f80f2009-07-10 15:44:37 -07001890 * registration was denied. See 3GPP TS 24.008,
1891 * 10.5.3.6 and Annex G.
1892 * 0 - General
1893 * 1 - Authentication Failure
1894 * 2 - IMSI unknown in HLR
1895 * 3 - Illegal MS
1896 * 4 - Illegal ME
1897 * 5 - PLMN not allowed
1898 * 6 - Location area not allowed
1899 * 7 - Roaming not allowed
1900 * 8 - No Suitable Cells in this Location Area
1901 * 9 - Network failure
jsh29be25c2009-07-14 20:18:59 -07001902 * 10 - Persistent location update reject
Wink Savillec0114b32011-02-18 10:14:07 -08001903 * 11 - PLMN not allowed
1904 * 12 - Location area not allowed
1905 * 13 - Roaming not allowed in this Location Area
1906 * 15 - No Suitable Cells in this Location Area
1907 * 17 - Network Failure
1908 * 20 - MAC Failure
1909 * 21 - Sync Failure
1910 * 22 - Congestion
1911 * 23 - GSM Authentication unacceptable
1912 * 25 - Not Authorized for this CSG
1913 * 32 - Service option not supported
1914 * 33 - Requested service option not subscribed
1915 * 34 - Service option temporarily out of order
1916 * 38 - Call cannot be identified
1917 * 48-63 - Retry upon entry into a new cell
1918 * 95 - Semantically incorrect message
1919 * 96 - Invalid mandatory information
1920 * 97 - Message type non-existent or not implemented
1921 * 98 - Message not compatible with protocol state
1922 * 99 - Information element non-existent or not implemented
1923 * 100 - Conditional IE error
1924 * 101 - Message not compatible with protocol state
1925 * 111 - Protocol error, unspecified
jshca5e3472010-06-23 21:53:24 -07001926 * ((const char **)response)[14] is the Primary Scrambling Code of the current
1927 * cell as described in TS 25.331, in hexadecimal
1928 * format, or NULL if unknown or not registered
1929 * to a UMTS network.
Wink Saville1b5fd232009-04-22 14:50:00 -07001930 *
1931 * Please note that registration state 4 ("unknown") is treated
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001932 * as "out of service" in the Android telephony system
1933 *
Wink Saville1b5fd232009-04-22 14:50:00 -07001934 * Registration state 3 can be returned if Location Update Reject
1935 * (with cause 17 - Network Failure) is received repeatedly from the network,
1936 * to facilitate "managed roaming"
1937 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001938 * Valid errors:
1939 * SUCCESS
1940 * RADIO_NOT_AVAILABLE
1941 * GENERIC_FAILURE
1942 */
Wink Savillec0114b32011-02-18 10:14:07 -08001943#define RIL_REQUEST_VOICE_REGISTRATION_STATE 20
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001944
1945/**
Wink Savillec0114b32011-02-18 10:14:07 -08001946 * RIL_REQUEST_DATA_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001947 *
Wink Savillec0114b32011-02-18 10:14:07 -08001948 * Request current DATA registration state
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001949 *
1950 * "data" is NULL
1951 * "response" is a "char **"
Li Zhe3a63fbc2009-08-04 13:14:34 +08001952 * ((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 -08001953 * ((const char **)response)[1] is LAC if registered or NULL if not
1954 * ((const char **)response)[2] is CID if registered or NULL if not
Wink Saville43808972011-01-13 17:39:51 -08001955 * ((const char **)response)[3] indicates the available data radio technology,
1956 * valid values as defined by RIL_RadioTechnology.
Wink Savillec0114b32011-02-18 10:14:07 -08001957 * ((const char **)response)[4] if registration state is 3 (Registration
1958 * denied) this is an enumerated reason why
1959 * registration was denied. See 3GPP TS 24.008,
1960 * Annex G.6 "Additonal cause codes for GMM".
1961 * 7 == GPRS services not allowed
1962 * 8 == GPRS services and non-GPRS services not allowed
1963 * 9 == MS identity cannot be derived by the network
1964 * 10 == Implicitly detached
1965 * 14 == GPRS services not allowed in this PLMN
1966 * 16 == MSC temporarily not reachable
1967 * 40 == No PDP context activated
1968 * ((const char **)response)[5] The maximum number of simultaneous Data Calls that can be
1969 * established using RIL_REQUEST_SETUP_DATA_CALL.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001970 *
Wink Savilleae679532012-12-03 14:59:45 -08001971 * The values at offsets 6..10 are optional LTE location information in decimal.
1972 * If a value is unknown that value may be NULL. If all values are NULL,
1973 * none need to be present.
Wink Savilleea51a9d2012-09-15 07:54:06 -07001974 * ((const char **)response)[6] is TAC, a 16-bit Tracking Area Code.
1975 * ((const char **)response)[7] is CID, a 0-503 Physical Cell Identifier.
1976 * ((const char **)response)[8] is ECI, a 28-bit E-UTRAN Cell Identifier.
1977 * ((const char **)response)[9] is CSGID, a 27-bit Closed Subscriber Group Identity.
1978 * ((const char **)response)[10] is TADV, a 6-bit timing advance value.
1979 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001980 * LAC and CID are in hexadecimal format.
1981 * valid LAC are 0x0000 - 0xffff
1982 * valid CID are 0x00000000 - 0x0fffffff
Wink Saville7f856802009-06-09 10:23:37 -07001983 *
1984 * Please note that registration state 4 ("unknown") is treated
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001985 * as "out of service" in the Android telephony system
1986 *
1987 * Valid errors:
1988 * SUCCESS
1989 * RADIO_NOT_AVAILABLE
1990 * GENERIC_FAILURE
1991 */
Wink Savillec0114b32011-02-18 10:14:07 -08001992#define RIL_REQUEST_DATA_REGISTRATION_STATE 21
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08001993
1994/**
1995 * RIL_REQUEST_OPERATOR
1996 *
1997 * Request current operator ONS or EONS
1998 *
1999 * "data" is NULL
2000 * "response" is a "const char **"
Wink Saville7f856802009-06-09 10:23:37 -07002001 * ((const char **)response)[0] is long alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002002 * or NULL if unregistered
2003 *
Wink Saville7f856802009-06-09 10:23:37 -07002004 * ((const char **)response)[1] is short alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002005 * or NULL if unregistered
2006 * ((const char **)response)[2] is 5 or 6 digit numeric code (MCC + MNC)
2007 * or NULL if unregistered
Wink Saville7f856802009-06-09 10:23:37 -07002008 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002009 * Valid errors:
2010 * SUCCESS
2011 * RADIO_NOT_AVAILABLE
2012 * GENERIC_FAILURE
2013 */
2014#define RIL_REQUEST_OPERATOR 22
2015
2016/**
2017 * RIL_REQUEST_RADIO_POWER
2018 *
2019 * Toggle radio on and off (for "airplane" mode)
Wink Saville29487ef2011-04-15 09:15:31 -07002020 * If the radio is is turned off/on the radio modem subsystem
2021 * is expected return to an initialized state. For instance,
2022 * any voice and data calls will be terminated and all associated
2023 * lists emptied.
2024 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002025 * "data" is int *
2026 * ((int *)data)[0] is > 0 for "Radio On"
2027 * ((int *)data)[0] is == 0 for "Radio Off"
2028 *
2029 * "response" is NULL
2030 *
2031 * Turn radio on if "on" > 0
2032 * Turn radio off if "on" == 0
2033 *
2034 * Valid errors:
2035 * SUCCESS
2036 * RADIO_NOT_AVAILABLE
2037 * GENERIC_FAILURE
2038 */
2039#define RIL_REQUEST_RADIO_POWER 23
2040
2041/**
2042 * RIL_REQUEST_DTMF
2043 *
2044 * Send a DTMF tone
2045 *
2046 * If the implementation is currently playing a tone requested via
2047 * RIL_REQUEST_DTMF_START, that tone should be cancelled and the new tone
2048 * should be played instead
2049 *
jsh602f80f2009-07-10 15:44:37 -07002050 * "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 -08002051 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002052 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002053 * FIXME should this block/mute microphone?
2054 * How does this interact with local DTMF feedback?
2055 *
2056 * Valid errors:
2057 * SUCCESS
2058 * RADIO_NOT_AVAILABLE
2059 * GENERIC_FAILURE
2060 *
2061 * See also: RIL_REQUEST_DTMF_STOP, RIL_REQUEST_DTMF_START
2062 *
2063 */
2064#define RIL_REQUEST_DTMF 24
2065
2066/**
2067 * RIL_REQUEST_SEND_SMS
Wink Saville7f856802009-06-09 10:23:37 -07002068 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002069 * Send an SMS message
2070 *
2071 * "data" is const char **
2072 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
2073 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
2074 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
2075 * less the SMSC address
2076 * TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
2077 *
2078 * "response" is a const RIL_SMS_Response *
2079 *
2080 * Based on the return error, caller decides to resend if sending sms
Wink Saville7f856802009-06-09 10:23:37 -07002081 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002082 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
2083 *
2084 * Valid errors:
2085 * SUCCESS
2086 * RADIO_NOT_AVAILABLE
2087 * SMS_SEND_FAIL_RETRY
jsh602f80f2009-07-10 15:44:37 -07002088 * FDN_CHECK_FAILURE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002089 * GENERIC_FAILURE
2090 *
2091 * FIXME how do we specify TP-Message-Reference if we need to resend?
2092 */
2093#define RIL_REQUEST_SEND_SMS 25
2094
2095
2096/**
2097 * RIL_REQUEST_SEND_SMS_EXPECT_MORE
Wink Saville7f856802009-06-09 10:23:37 -07002098 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002099 * Send an SMS message. Identical to RIL_REQUEST_SEND_SMS,
2100 * except that more messages are expected to be sent soon. If possible,
2101 * keep SMS relay protocol link open (eg TS 27.005 AT+CMMS command)
2102 *
2103 * "data" is const char **
2104 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
2105 * by a length byte (as expected by TS 27.005) or NULL for default SMSC
2106 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
2107 * less the SMSC address
2108 * TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
2109 *
2110 * "response" is a const RIL_SMS_Response *
2111 *
2112 * Based on the return error, caller decides to resend if sending sms
Wink Saville7f856802009-06-09 10:23:37 -07002113 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002114 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
2115 *
2116 * Valid errors:
2117 * SUCCESS
2118 * RADIO_NOT_AVAILABLE
2119 * SMS_SEND_FAIL_RETRY
2120 * GENERIC_FAILURE
2121 *
2122 */
2123#define RIL_REQUEST_SEND_SMS_EXPECT_MORE 26
2124
2125
2126/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002127 * RIL_REQUEST_SETUP_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002128 *
Wink Saville29487ef2011-04-15 09:15:31 -07002129 * Setup a packet data connection. If RIL_Data_Call_Response_v6.status
2130 * return success it is added to the list of data calls and a
2131 * RIL_UNSOL_DATA_CALL_LIST_CHANGED is sent. The call remains in the
2132 * list until RIL_REQUEST_DEACTIVATE_DATA_CALL is issued or the
2133 * radio is powered off/on. This list is returned by RIL_REQUEST_DATA_CALL_LIST
2134 * and RIL_UNSOL_DATA_CALL_LIST_CHANGED.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002135 *
Wink Saville43808972011-01-13 17:39:51 -08002136 * The RIL is expected to:
2137 * - Create one data call context.
2138 * - Create and configure a dedicated interface for the context
2139 * - The interface must be point to point.
2140 * - The interface is configured with one or more addresses and
2141 * is capable of sending and receiving packets. The prefix length
2142 * of the addresses must be /32 for IPv4 and /128 for IPv6.
2143 * - Must NOT change the linux routing table.
Wink Savillec0114b32011-02-18 10:14:07 -08002144 * - Support up to RIL_REQUEST_DATA_REGISTRATION_STATE response[5]
Wink Saville43808972011-01-13 17:39:51 -08002145 * number of simultaneous data call contexts.
2146 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002147 * "data" is a const char **
Wink Savillec0114b32011-02-18 10:14:07 -08002148 * ((const char **)data)[0] Radio technology to use: 0-CDMA, 1-GSM/UMTS, 2...
2149 * for values above 2 this is RIL_RadioTechnology + 2.
jsh602f80f2009-07-10 15:44:37 -07002150 * ((const char **)data)[1] is a RIL_DataProfile (support is optional)
Wink Saville7f856802009-06-09 10:23:37 -07002151 * ((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 -07002152 * override the one in the profile. NULL indicates no APN overrride.
2153 * ((const char **)data)[3] is the username for APN, or NULL
2154 * ((const char **)data)[4] is the password for APN, or NULL
Jaikumar Ganesh920c78f2009-06-04 10:53:15 -07002155 * ((const char **)data)[5] is the PAP / CHAP auth type. Values:
2156 * 0 => PAP and CHAP is never performed.
2157 * 1 => PAP may be performed; CHAP is never performed.
2158 * 2 => CHAP may be performed; PAP is never performed.
2159 * 3 => PAP / CHAP may be performed - baseband dependent.
Wink Savillec0114b32011-02-18 10:14:07 -08002160 * ((const char **)data)[6] is the connection type to request must be one of the
2161 * PDP_type values in TS 27.007 section 10.1.1.
Lorenzo Colitti4f81dcf2010-09-01 19:38:57 -07002162 * For example, "IP", "IPV6", "IPV4V6", or "PPP".
Wink Savillec0114b32011-02-18 10:14:07 -08002163 * ((const char **)data)[7] Optional connection property parameters, format to be defined.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002164 *
Sukanya Rajkhowab44dda32014-06-02 14:03:44 -07002165 * "response" is a RIL_Data_Call_Response_v11
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002166 *
2167 * FIXME may need way to configure QoS settings
Wink Saville3d54e742009-05-18 18:00:44 -07002168 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002169 * Valid errors:
Wink Saville43808972011-01-13 17:39:51 -08002170 * SUCCESS should be returned on both success and failure of setup with
Wink Savillec0114b32011-02-18 10:14:07 -08002171 * the RIL_Data_Call_Response_v6.status containing the actual status.
2172 * For all other errors the RIL_Data_Call_Resonse_v6 is ignored.
Wink Saville43808972011-01-13 17:39:51 -08002173 *
2174 * Other errors could include:
2175 * RADIO_NOT_AVAILABLE, GENERIC_FAILURE, OP_NOT_ALLOWED_BEFORE_REG_TO_NW,
2176 * OP_NOT_ALLOWED_DURING_VOICE_CALL and REQUEST_NOT_SUPPORTED.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002177 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002178 * See also: RIL_REQUEST_DEACTIVATE_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002179 */
Wink Savillef4c4d362009-04-02 01:37:03 -07002180#define RIL_REQUEST_SETUP_DATA_CALL 27
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002181
2182
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002183/**
2184 * RIL_REQUEST_SIM_IO
2185 *
2186 * Request SIM I/O operation.
2187 * This is similar to the TS 27.007 "restricted SIM" operation
2188 * where it assumes all of the EF selection will be done by the
2189 * callee.
2190 *
Wink Savillefd729372011-02-22 16:19:39 -08002191 * "data" is a const RIL_SIM_IO_v6 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002192 * Please note that RIL_SIM_IO has a "PIN2" field which may be NULL,
2193 * or may specify a PIN2 for operations that require a PIN2 (eg
2194 * updating FDN records)
2195 *
2196 * "response" is a const RIL_SIM_IO_Response *
2197 *
2198 * Arguments and responses that are unused for certain
2199 * values of "command" should be ignored or set to NULL
2200 *
2201 * Valid errors:
2202 * SUCCESS
2203 * RADIO_NOT_AVAILABLE
2204 * GENERIC_FAILURE
2205 * SIM_PIN2
2206 * SIM_PUK2
2207 */
2208#define RIL_REQUEST_SIM_IO 28
2209
2210/**
2211 * RIL_REQUEST_SEND_USSD
2212 *
2213 * Send a USSD message
2214 *
2215 * If a USSD session already exists, the message should be sent in the
2216 * context of that session. Otherwise, a new session should be created.
2217 *
2218 * The network reply should be reported via RIL_UNSOL_ON_USSD
2219 *
2220 * Only one USSD session may exist at a time, and the session is assumed
2221 * to exist until:
2222 * a) The android system invokes RIL_REQUEST_CANCEL_USSD
2223 * b) The implementation sends a RIL_UNSOL_ON_USSD with a type code
2224 * of "0" (USSD-Notify/no further action) or "2" (session terminated)
2225 *
2226 * "data" is a const char * containing the USSD request in UTF-8 format
2227 * "response" is NULL
2228 *
2229 * Valid errors:
2230 * SUCCESS
2231 * RADIO_NOT_AVAILABLE
jsh602f80f2009-07-10 15:44:37 -07002232 * FDN_CHECK_FAILURE
Amit Mahajan54563d32014-11-22 00:54:49 +00002233 * USSD_MODIFIED_TO_DIAL
2234 * USSD_MODIFIED_TO_SS
2235 * USSD_MODIFIED_TO_USSD
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002236 * GENERIC_FAILURE
2237 *
2238 * See also: RIL_REQUEST_CANCEL_USSD, RIL_UNSOL_ON_USSD
2239 */
2240
2241#define RIL_REQUEST_SEND_USSD 29
2242
2243/**
2244 * RIL_REQUEST_CANCEL_USSD
Wink Saville7f856802009-06-09 10:23:37 -07002245 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002246 * Cancel the current USSD session if one exists
2247 *
2248 * "data" is null
2249 * "response" is NULL
2250 *
2251 * Valid errors:
2252 * SUCCESS
2253 * RADIO_NOT_AVAILABLE
Wink Saville7f856802009-06-09 10:23:37 -07002254 * GENERIC_FAILURE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002255 */
2256
2257#define RIL_REQUEST_CANCEL_USSD 30
2258
Wink Saville7f856802009-06-09 10:23:37 -07002259/**
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002260 * RIL_REQUEST_GET_CLIR
2261 *
2262 * Gets current CLIR status
2263 * "data" is NULL
2264 * "response" is int *
2265 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
2266 * ((int *)data)[1] is "m" parameter from TS 27.007 7.7
2267 *
2268 * Valid errors:
2269 * SUCCESS
2270 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002271 * SS_MODIFIED_TO_DIAL
2272 * SS_MODIFIED_TO_USSD
2273 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002274 * GENERIC_FAILURE
2275 */
2276#define RIL_REQUEST_GET_CLIR 31
2277
2278/**
2279 * RIL_REQUEST_SET_CLIR
2280 *
2281 * "data" is int *
2282 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
2283 *
2284 * "response" is NULL
2285 *
2286 * Valid errors:
2287 * SUCCESS
2288 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002289 * SS_MODIFIED_TO_DIAL
2290 * SS_MODIFIED_TO_USSD
2291 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002292 * GENERIC_FAILURE
2293 */
2294#define RIL_REQUEST_SET_CLIR 32
2295
2296/**
2297 * RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
2298 *
2299 * "data" is const RIL_CallForwardInfo *
2300 *
2301 * "response" is const RIL_CallForwardInfo **
2302 * "response" points to an array of RIL_CallForwardInfo *'s, one for
2303 * each distinct registered phone number.
2304 *
2305 * For example, if data is forwarded to +18005551212 and voice is forwarded
2306 * to +18005559999, then two separate RIL_CallForwardInfo's should be returned
Wink Saville7f856802009-06-09 10:23:37 -07002307 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002308 * If, however, both data and voice are forwarded to +18005551212, then
2309 * a single RIL_CallForwardInfo can be returned with the service class
2310 * set to "data + voice = 3")
2311 *
2312 * Valid errors:
2313 * SUCCESS
2314 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002315 * SS_MODIFIED_TO_DIAL
2316 * SS_MODIFIED_TO_USSD
2317 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002318 * GENERIC_FAILURE
2319 */
2320#define RIL_REQUEST_QUERY_CALL_FORWARD_STATUS 33
2321
2322
2323/**
2324 * RIL_REQUEST_SET_CALL_FORWARD
2325 *
2326 * Configure call forward rule
2327 *
2328 * "data" is const RIL_CallForwardInfo *
2329 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002330 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002331 * Valid errors:
2332 * SUCCESS
2333 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002334 * SS_MODIFIED_TO_DIAL
2335 * SS_MODIFIED_TO_USSD
2336 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002337 * GENERIC_FAILURE
2338 */
2339#define RIL_REQUEST_SET_CALL_FORWARD 34
2340
2341
2342/**
2343 * RIL_REQUEST_QUERY_CALL_WAITING
2344 *
2345 * Query current call waiting state
2346 *
2347 * "data" is const int *
2348 * ((const int *)data)[0] is the TS 27.007 service class to query.
2349 * "response" is a const int *
2350 * ((const int *)response)[0] is 0 for "disabled" and 1 for "enabled"
2351 *
2352 * If ((const int *)response)[0] is = 1, then ((const int *)response)[1]
2353 * must follow, with the TS 27.007 service class bit vector of services
2354 * for which call waiting is enabled.
2355 *
Wink Saville7f856802009-06-09 10:23:37 -07002356 * For example, if ((const int *)response)[0] is 1 and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002357 * ((const int *)response)[1] is 3, then call waiting is enabled for data
2358 * and voice and disabled for everything else
2359 *
2360 * Valid errors:
2361 * SUCCESS
2362 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002363 * SS_MODIFIED_TO_DIAL
2364 * SS_MODIFIED_TO_USSD
2365 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002366 * GENERIC_FAILURE
2367 */
2368#define RIL_REQUEST_QUERY_CALL_WAITING 35
2369
2370
2371/**
2372 * RIL_REQUEST_SET_CALL_WAITING
2373 *
2374 * Configure current call waiting state
2375 *
2376 * "data" is const int *
2377 * ((const int *)data)[0] is 0 for "disabled" and 1 for "enabled"
2378 * ((const int *)data)[1] is the TS 27.007 service class bit vector of
2379 * services to modify
2380 * "response" is NULL
2381 *
2382 * Valid errors:
2383 * SUCCESS
2384 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002385 * SS_MODIFIED_TO_DIAL
2386 * SS_MODIFIED_TO_USSD
2387 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002388 * GENERIC_FAILURE
2389 */
2390#define RIL_REQUEST_SET_CALL_WAITING 36
2391
2392/**
2393 * RIL_REQUEST_SMS_ACKNOWLEDGE
2394 *
2395 * Acknowledge successful or failed receipt of SMS previously indicated
Wink Saville7f856802009-06-09 10:23:37 -07002396 * via RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002397 *
2398 * "data" is int *
jshb60444e2009-05-29 11:09:17 -07002399 * ((int *)data)[0] is 1 on successful receipt
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002400 * (basically, AT+CNMA=1 from TS 27.005
jshb60444e2009-05-29 11:09:17 -07002401 * is 0 on failed receipt
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002402 * (basically, AT+CNMA=2 from TS 27.005)
jshb60444e2009-05-29 11:09:17 -07002403 * ((int *)data)[1] if data[0] is 0, this contains the failure cause as defined
2404 * in TS 23.040, 9.2.3.22. Currently only 0xD3 (memory
2405 * capacity exceeded) and 0xFF (unspecified error) are
2406 * reported.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002407 *
2408 * "response" is NULL
2409 *
2410 * FIXME would like request that specified RP-ACK/RP-ERROR PDU
2411 *
2412 * Valid errors:
2413 * SUCCESS
2414 * RADIO_NOT_AVAILABLE
2415 * GENERIC_FAILURE
2416 */
2417#define RIL_REQUEST_SMS_ACKNOWLEDGE 37
2418
2419/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002420 * RIL_REQUEST_GET_IMEI - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002421 *
2422 * Get the device IMEI, including check digit
2423 *
johnwangf8bc1672009-05-14 19:19:47 -07002424 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002425 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
2426 *
2427 * "data" is NULL
2428 * "response" is a const char * containing the IMEI
2429 *
2430 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002431 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002432 * RADIO_NOT_AVAILABLE (radio resetting)
2433 * GENERIC_FAILURE
2434 */
2435
2436#define RIL_REQUEST_GET_IMEI 38
2437
2438/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002439 * RIL_REQUEST_GET_IMEISV - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002440 *
2441 * Get the device IMEISV, which should be two decimal digits
2442 *
johnwangf8bc1672009-05-14 19:19:47 -07002443 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002444 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
2445 *
2446 * "data" is NULL
2447 * "response" is a const char * containing the IMEISV
2448 *
2449 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002450 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002451 * RADIO_NOT_AVAILABLE (radio resetting)
2452 * GENERIC_FAILURE
2453 */
2454
2455#define RIL_REQUEST_GET_IMEISV 39
2456
2457
2458/**
2459 * RIL_REQUEST_ANSWER
2460 *
2461 * Answer incoming call
2462 *
2463 * Will not be called for WAITING calls.
2464 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE will be used in this case
2465 * instead
2466 *
2467 * "data" is NULL
2468 * "response" is NULL
2469 *
2470 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002471 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002472 * RADIO_NOT_AVAILABLE (radio resetting)
2473 * GENERIC_FAILURE
2474 */
2475
2476#define RIL_REQUEST_ANSWER 40
2477
2478/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002479 * RIL_REQUEST_DEACTIVATE_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002480 *
Wink Saville29487ef2011-04-15 09:15:31 -07002481 * Deactivate packet data connection and remove from the
2482 * data call list if SUCCESS is returned. Any other return
2483 * values should also try to remove the call from the list,
2484 * but that may not be possible. In any event a
2485 * RIL_REQUEST_RADIO_POWER off/on must clear the list. An
2486 * RIL_UNSOL_DATA_CALL_LIST_CHANGED is not expected to be
2487 * issued because of an RIL_REQUEST_DEACTIVATE_DATA_CALL.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002488 *
2489 * "data" is const char **
Wink Savillef4c4d362009-04-02 01:37:03 -07002490 * ((char**)data)[0] indicating CID
Kazuhiro Ondod86799a2010-12-02 13:22:35 -06002491 * ((char**)data)[1] indicating Disconnect Reason
2492 * 0 => No specific reason specified
2493 * 1 => Radio shutdown requested
Wink Saville7f856802009-06-09 10:23:37 -07002494 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002495 * "response" is NULL
2496 *
2497 * Valid errors:
2498 * SUCCESS
2499 * RADIO_NOT_AVAILABLE
2500 * GENERIC_FAILURE
2501 *
Wink Savillef4c4d362009-04-02 01:37:03 -07002502 * See also: RIL_REQUEST_SETUP_DATA_CALL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002503 */
Wink Savillef4c4d362009-04-02 01:37:03 -07002504#define RIL_REQUEST_DEACTIVATE_DATA_CALL 41
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002505
2506/**
2507 * RIL_REQUEST_QUERY_FACILITY_LOCK
2508 *
2509 * Query the status of a facility lock state
2510 *
2511 * "data" is const char **
Wink Saville7f856802009-06-09 10:23:37 -07002512 * ((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 -08002513 * (eg "AO" for BAOC, "SC" for SIM lock)
2514 * ((const char **)data)[1] is the password, or "" if not required
2515 * ((const char **)data)[2] is the TS 27.007 service class bit vector of
2516 * services to query
Wink Savillec0114b32011-02-18 10:14:07 -08002517 * ((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 -08002518 * This is only applicable in the case of Fixed Dialing Numbers
2519 * (FDN) requests.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002520 *
2521 * "response" is an int *
2522 * ((const int *)response) 0 is the TS 27.007 service class bit vector of
Wink Saville7f856802009-06-09 10:23:37 -07002523 * services for which the specified barring facility
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002524 * is active. "0" means "disabled for all"
Wink Saville7f856802009-06-09 10:23:37 -07002525 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002526 *
2527 * Valid errors:
2528 * SUCCESS
2529 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002530 * SS_MODIFIED_TO_DIAL
2531 * SS_MODIFIED_TO_USSD
2532 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002533 * GENERIC_FAILURE
2534 *
2535 */
2536#define RIL_REQUEST_QUERY_FACILITY_LOCK 42
2537
2538/**
2539 * RIL_REQUEST_SET_FACILITY_LOCK
2540 *
2541 * Enable/disable one facility lock
2542 *
2543 * "data" is const char **
2544 *
2545 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
2546 * (eg "AO" for BAOC)
2547 * ((const char **)data)[1] = "0" for "unlock" and "1" for "lock"
2548 * ((const char **)data)[2] = password
2549 * ((const char **)data)[3] = string representation of decimal TS 27.007
2550 * service class bit vector. Eg, the string
2551 * "1" means "set this facility for voice services"
Wink Savillec0114b32011-02-18 10:14:07 -08002552 * ((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 -08002553 * This is only applicable in the case of Fixed Dialing Numbers
2554 * (FDN) requests.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002555 *
jsh593c9102009-06-24 16:13:44 -07002556 * "response" is int *
2557 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002558 *
2559 * Valid errors:
2560 * SUCCESS
2561 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002562 * SS_MODIFIED_TO_DIAL
2563 * SS_MODIFIED_TO_USSD
2564 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002565 * GENERIC_FAILURE
2566 *
2567 */
2568#define RIL_REQUEST_SET_FACILITY_LOCK 43
2569
2570/**
2571 * RIL_REQUEST_CHANGE_BARRING_PASSWORD
2572 *
2573 * Change call barring facility password
2574 *
2575 * "data" is const char **
2576 *
2577 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
2578 * (eg "AO" for BAOC)
2579 * ((const char **)data)[1] = old password
2580 * ((const char **)data)[2] = new password
2581 *
Wink Saville7f856802009-06-09 10:23:37 -07002582 * "response" is NULL
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002583 *
2584 * Valid errors:
2585 * SUCCESS
2586 * RADIO_NOT_AVAILABLE
Amit Mahajan54563d32014-11-22 00:54:49 +00002587 * SS_MODIFIED_TO_DIAL
2588 * SS_MODIFIED_TO_USSD
2589 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002590 * GENERIC_FAILURE
2591 *
2592 */
2593#define RIL_REQUEST_CHANGE_BARRING_PASSWORD 44
2594
2595/**
2596 * RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE
2597 *
2598 * Query current network selectin mode
2599 *
2600 * "data" is NULL
2601 *
2602 * "response" is int *
2603 * ((const int *)response)[0] is
2604 * 0 for automatic selection
2605 * 1 for manual selection
2606 *
2607 * Valid errors:
2608 * SUCCESS
2609 * RADIO_NOT_AVAILABLE
2610 * GENERIC_FAILURE
2611 *
2612 */
2613#define RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE 45
2614
2615/**
2616 * RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC
2617 *
2618 * Specify that the network should be selected automatically
2619 *
2620 * "data" is NULL
2621 * "response" is NULL
2622 *
Wink Saville7f856802009-06-09 10:23:37 -07002623 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002624 * and registered
2625 *
2626 * Valid errors:
2627 * SUCCESS
2628 * RADIO_NOT_AVAILABLE
John Wang75534472010-04-20 15:11:42 -07002629 * ILLEGAL_SIM_OR_ME
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002630 * GENERIC_FAILURE
2631 *
John Wang75534472010-04-20 15:11:42 -07002632 * Note: Returns ILLEGAL_SIM_OR_ME when the failure is permanent and
2633 * no retries needed, such as illegal SIM or ME.
2634 * Returns GENERIC_FAILURE for all other causes that might be
2635 * fixed by retries.
2636 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002637 */
2638#define RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC 46
2639
2640/**
2641 * RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL
2642 *
2643 * Manually select a specified network.
2644 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002645 * "data" is const char * specifying MCCMNC of network to select (eg "310170")
2646 * "response" is NULL
2647 *
Wink Saville7f856802009-06-09 10:23:37 -07002648 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002649 * and registered
2650 *
2651 * Valid errors:
2652 * SUCCESS
2653 * RADIO_NOT_AVAILABLE
John Wang75534472010-04-20 15:11:42 -07002654 * ILLEGAL_SIM_OR_ME
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002655 * GENERIC_FAILURE
2656 *
John Wang75534472010-04-20 15:11:42 -07002657 * Note: Returns ILLEGAL_SIM_OR_ME when the failure is permanent and
2658 * no retries needed, such as illegal SIM or ME.
2659 * Returns GENERIC_FAILURE for all other causes that might be
2660 * fixed by retries.
2661 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002662 */
2663#define RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL 47
2664
2665/**
2666 * RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
2667 *
2668 * Scans for available networks
2669 *
2670 * "data" is NULL
2671 * "response" is const char ** that should be an array of n*4 strings, where
2672 * n is the number of available networks
2673 * For each available network:
2674 *
Wink Saville7f856802009-06-09 10:23:37 -07002675 * ((const char **)response)[n+0] is long alpha ONS or EONS
2676 * ((const char **)response)[n+1] is short alpha ONS or EONS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002677 * ((const char **)response)[n+2] is 5 or 6 digit numeric code (MCC + MNC)
2678 * ((const char **)response)[n+3] is a string value of the status:
2679 * "unknown"
2680 * "available"
2681 * "current"
2682 * "forbidden"
2683 *
Wink Saville7f856802009-06-09 10:23:37 -07002684 * This request must not respond until the new operator is selected
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002685 * and registered
2686 *
2687 * Valid errors:
2688 * SUCCESS
2689 * RADIO_NOT_AVAILABLE
2690 * GENERIC_FAILURE
2691 *
2692 */
2693#define RIL_REQUEST_QUERY_AVAILABLE_NETWORKS 48
2694
2695/**
2696 * RIL_REQUEST_DTMF_START
2697 *
Wink Saville7f856802009-06-09 10:23:37 -07002698 * Start playing a DTMF tone. Continue playing DTMF tone until
2699 * RIL_REQUEST_DTMF_STOP is received
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002700 *
2701 * If a RIL_REQUEST_DTMF_START is received while a tone is currently playing,
2702 * it should cancel the previous tone and play the new one.
Wink Saville7f856802009-06-09 10:23:37 -07002703 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002704 * "data" is a char *
2705 * ((char *)data)[0] is a single character with one of 12 values: 0-9,*,#
2706 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002707 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002708 * Valid errors:
2709 * SUCCESS
2710 * RADIO_NOT_AVAILABLE
2711 * GENERIC_FAILURE
2712 *
2713 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_STOP
2714 */
2715#define RIL_REQUEST_DTMF_START 49
2716
2717/**
2718 * RIL_REQUEST_DTMF_STOP
2719 *
2720 * Stop playing a currently playing DTMF tone.
Wink Saville7f856802009-06-09 10:23:37 -07002721 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002722 * "data" is NULL
2723 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07002724 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002725 * Valid errors:
2726 * SUCCESS
2727 * RADIO_NOT_AVAILABLE
2728 * GENERIC_FAILURE
2729 *
2730 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_START
2731 */
2732#define RIL_REQUEST_DTMF_STOP 50
2733
2734/**
2735 * RIL_REQUEST_BASEBAND_VERSION
2736 *
2737 * Return string value indicating baseband version, eg
2738 * response from AT+CGMR
Wink Saville7f856802009-06-09 10:23:37 -07002739 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002740 * "data" is NULL
2741 * "response" is const char * containing version string for log reporting
Wink Saville7f856802009-06-09 10:23:37 -07002742 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002743 * Valid errors:
2744 * SUCCESS
2745 * RADIO_NOT_AVAILABLE
2746 * GENERIC_FAILURE
2747 *
2748 */
2749#define RIL_REQUEST_BASEBAND_VERSION 51
2750
2751/**
2752 * RIL_REQUEST_SEPARATE_CONNECTION
2753 *
2754 * Separate a party from a multiparty call placing the multiparty call
Wink Saville7f856802009-06-09 10:23:37 -07002755 * (less the specified party) on hold and leaving the specified party
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002756 * as the only other member of the current (active) call
2757 *
2758 * Like AT+CHLD=2x
2759 *
2760 * See TS 22.084 1.3.8.2 (iii)
2761 * TS 22.030 6.5.5 "Entering "2X followed by send"
2762 * TS 27.007 "AT+CHLD=2x"
Wink Saville7f856802009-06-09 10:23:37 -07002763 *
2764 * "data" is an int *
Wink Savillef4c4d362009-04-02 01:37:03 -07002765 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above) "response" is NULL
2766 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002767 * "response" is NULL
2768 *
2769 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002770 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002771 * RADIO_NOT_AVAILABLE (radio resetting)
2772 * GENERIC_FAILURE
2773 */
2774#define RIL_REQUEST_SEPARATE_CONNECTION 52
2775
2776
2777/**
2778 * RIL_REQUEST_SET_MUTE
2779 *
2780 * Turn on or off uplink (microphone) mute.
2781 *
2782 * Will only be sent while voice call is active.
2783 * Will always be reset to "disable mute" when a new voice call is initiated
2784 *
2785 * "data" is an int *
2786 * (int *)data)[0] is 1 for "enable mute" and 0 for "disable mute"
2787 *
2788 * "response" is NULL
2789 *
2790 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002791 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002792 * RADIO_NOT_AVAILABLE (radio resetting)
2793 * GENERIC_FAILURE
2794 */
2795
2796#define RIL_REQUEST_SET_MUTE 53
2797
2798/**
2799 * RIL_REQUEST_GET_MUTE
2800 *
2801 * Queries the current state of the uplink mute setting
2802 *
2803 * "data" is NULL
2804 * "response" is an int *
2805 * (int *)response)[0] is 1 for "mute enabled" and 0 for "mute disabled"
2806 *
2807 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002808 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002809 * RADIO_NOT_AVAILABLE (radio resetting)
Amit Mahajan54563d32014-11-22 00:54:49 +00002810 * SS_MODIFIED_TO_DIAL
2811 * SS_MODIFIED_TO_USSD
2812 * SS_MODIFIED_TO_SS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002813 * GENERIC_FAILURE
2814 */
2815
2816#define RIL_REQUEST_GET_MUTE 54
2817
2818/**
2819 * RIL_REQUEST_QUERY_CLIP
2820 *
2821 * Queries the status of the CLIP supplementary service
2822 *
2823 * (for MMI code "*#30#")
2824 *
2825 * "data" is NULL
2826 * "response" is an int *
Wink Saville7f856802009-06-09 10:23:37 -07002827 * (int *)response)[0] is 1 for "CLIP provisioned"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002828 * and 0 for "CLIP not provisioned"
Wink Saville7f856802009-06-09 10:23:37 -07002829 * and 2 for "unknown, e.g. no network etc"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002830 *
2831 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002832 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002833 * RADIO_NOT_AVAILABLE (radio resetting)
2834 * GENERIC_FAILURE
2835 */
2836
2837#define RIL_REQUEST_QUERY_CLIP 55
2838
2839/**
Wink Savillec0114b32011-02-18 10:14:07 -08002840 * RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE - Deprecated use the status
2841 * field in RIL_Data_Call_Response_v6.
Wink Saville7f856802009-06-09 10:23:37 -07002842 *
2843 * Requests the failure cause code for the most recently failed PDP
Wink Savillef4c4d362009-04-02 01:37:03 -07002844 * context or CDMA data connection active
2845 * replaces RIL_REQUEST_LAST_PDP_FAIL_CAUSE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002846 *
2847 * "data" is NULL
2848 *
2849 * "response" is a "int *"
2850 * ((int *)response)[0] is an integer cause code defined in TS 24.008
2851 * section 6.1.3.1.3 or close approximation
2852 *
2853 * If the implementation does not have access to the exact cause codes,
Wink Saville7f856802009-06-09 10:23:37 -07002854 * then it should return one of the values listed in
Wink Saville43808972011-01-13 17:39:51 -08002855 * RIL_DataCallFailCause, as the UI layer needs to distinguish these
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002856 * cases for error notification
2857 * and potential retries.
2858 *
2859 * Valid errors:
2860 * SUCCESS
2861 * RADIO_NOT_AVAILABLE
2862 * GENERIC_FAILURE
2863 *
2864 * See also: RIL_REQUEST_LAST_CALL_FAIL_CAUSE
Wink Savillec0114b32011-02-18 10:14:07 -08002865 *
2866 * Deprecated use the status field in RIL_Data_Call_Response_v6.
Wink Saville7f856802009-06-09 10:23:37 -07002867 */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002868
Wink Savillef4c4d362009-04-02 01:37:03 -07002869#define RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE 56
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002870
2871/**
Wink Savillef4c4d362009-04-02 01:37:03 -07002872 * RIL_REQUEST_DATA_CALL_LIST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002873 *
Wink Saville29487ef2011-04-15 09:15:31 -07002874 * Returns the data call list. An entry is added when a
2875 * RIL_REQUEST_SETUP_DATA_CALL is issued and removed on a
2876 * RIL_REQUEST_DEACTIVATE_DATA_CALL. The list is emptied
2877 * when RIL_REQUEST_RADIO_POWER off/on is issued.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002878 *
2879 * "data" is NULL
Wink Savillec0114b32011-02-18 10:14:07 -08002880 * "response" is an array of RIL_Data_Call_Response_v6
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002881 *
2882 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002883 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002884 * RADIO_NOT_AVAILABLE (radio resetting)
2885 * GENERIC_FAILURE
Wink Saville29487ef2011-04-15 09:15:31 -07002886 *
2887 * See also: RIL_UNSOL_DATA_CALL_LIST_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002888 */
2889
Wink Savillef4c4d362009-04-02 01:37:03 -07002890#define RIL_REQUEST_DATA_CALL_LIST 57
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002891
2892/**
johnwangf8bc1672009-05-14 19:19:47 -07002893 * RIL_REQUEST_RESET_RADIO - DEPRECATED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002894 *
2895 * Request a radio reset. The RIL implementation may postpone
2896 * the reset until after this request is responded to if the baseband
2897 * is presently busy.
2898 *
johnwangf8bc1672009-05-14 19:19:47 -07002899 * The request is DEPRECATED, use RIL_REQUEST_RADIO_POWER
2900 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002901 * "data" is NULL
2902 * "response" is NULL
2903 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002904 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07002905 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002906 * RADIO_NOT_AVAILABLE (radio resetting)
2907 * GENERIC_FAILURE
johnwangf8bc1672009-05-14 19:19:47 -07002908 * REQUEST_NOT_SUPPORTED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002909 */
2910
2911#define RIL_REQUEST_RESET_RADIO 58
2912
2913/**
2914 * RIL_REQUEST_OEM_HOOK_RAW
2915 *
2916 * This request reserved for OEM-specific uses. It passes raw byte arrays
2917 * back and forth.
2918 *
Wink Saville7f856802009-06-09 10:23:37 -07002919 * It can be invoked on the Java side from
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002920 * com.android.internal.telephony.Phone.invokeOemRilRequestRaw()
2921 *
2922 * "data" is a char * of bytes copied from the byte[] data argument in java
2923 * "response" is a char * of bytes that will returned via the
Wink Saville7f856802009-06-09 10:23:37 -07002924 * caller's "response" Message here:
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002925 * (byte[])(((AsyncResult)response.obj).result)
2926 *
Wink Saville7f856802009-06-09 10:23:37 -07002927 * An error response here will result in
2928 * (((AsyncResult)response.obj).result) == null and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002929 * (((AsyncResult)response.obj).exception) being an instance of
2930 * com.android.internal.telephony.gsm.CommandException
2931 *
2932 * Valid errors:
2933 * All
2934 */
2935
2936#define RIL_REQUEST_OEM_HOOK_RAW 59
2937
2938/**
2939 * RIL_REQUEST_OEM_HOOK_STRINGS
2940 *
2941 * This request reserved for OEM-specific uses. It passes strings
2942 * back and forth.
2943 *
Wink Saville7f856802009-06-09 10:23:37 -07002944 * It can be invoked on the Java side from
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002945 * com.android.internal.telephony.Phone.invokeOemRilRequestStrings()
2946 *
2947 * "data" is a const char **, representing an array of null-terminated UTF-8
2948 * strings copied from the "String[] strings" argument to
2949 * invokeOemRilRequestStrings()
2950 *
2951 * "response" is a const char **, representing an array of null-terminated UTF-8
2952 * stings that will be returned via the caller's response message here:
2953 *
2954 * (String[])(((AsyncResult)response.obj).result)
2955 *
Wink Saville7f856802009-06-09 10:23:37 -07002956 * An error response here will result in
2957 * (((AsyncResult)response.obj).result) == null and
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002958 * (((AsyncResult)response.obj).exception) being an instance of
2959 * com.android.internal.telephony.gsm.CommandException
2960 *
2961 * Valid errors:
2962 * All
2963 */
2964
2965#define RIL_REQUEST_OEM_HOOK_STRINGS 60
2966
2967/**
2968 * RIL_REQUEST_SCREEN_STATE
2969 *
2970 * Indicates the current state of the screen. When the screen is off, the
2971 * RIL should notify the baseband to suppress certain notifications (eg,
jsh43265612009-09-29 17:46:11 -07002972 * signal strength and changes in LAC/CID or BID/SID/NID/latitude/longitude)
2973 * in an effort to conserve power. These notifications should resume when the
2974 * screen is on.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08002975 *
2976 * "data" is int *
2977 * ((int *)data)[0] is == 1 for "Screen On"
2978 * ((int *)data)[0] is == 0 for "Screen Off"
2979 *
2980 * "response" is NULL
2981 *
2982 * Valid errors:
2983 * SUCCESS
2984 * GENERIC_FAILURE
2985 */
2986#define RIL_REQUEST_SCREEN_STATE 61
2987
2988
2989/**
2990 * RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION
2991 *
2992 * Enables/disables supplementary service related notifications
2993 * from the network.
2994 *
2995 * Notifications are reported via RIL_UNSOL_SUPP_SVC_NOTIFICATION.
2996 *
2997 * "data" is int *
2998 * ((int *)data)[0] is == 1 for notifications enabled
2999 * ((int *)data)[0] is == 0 for notifications disabled
3000 *
3001 * "response" is NULL
3002 *
3003 * Valid errors:
3004 * SUCCESS
3005 * RADIO_NOT_AVAILABLE
3006 * GENERIC_FAILURE
3007 *
3008 * See also: RIL_UNSOL_SUPP_SVC_NOTIFICATION.
3009 */
3010#define RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION 62
3011
3012/**
3013 * RIL_REQUEST_WRITE_SMS_TO_SIM
3014 *
3015 * Stores a SMS message to SIM memory.
3016 *
3017 * "data" is RIL_SMS_WriteArgs *
3018 *
3019 * "response" is int *
3020 * ((const int *)response)[0] is the record index where the message is stored.
3021 *
3022 * Valid errors:
3023 * SUCCESS
3024 * GENERIC_FAILURE
3025 *
3026 */
3027#define RIL_REQUEST_WRITE_SMS_TO_SIM 63
3028
3029/**
3030 * RIL_REQUEST_DELETE_SMS_ON_SIM
3031 *
3032 * Deletes a SMS message from SIM memory.
3033 *
3034 * "data" is int *
3035 * ((int *)data)[0] is the record index of the message to delete.
3036 *
3037 * "response" is NULL
3038 *
3039 * Valid errors:
3040 * SUCCESS
3041 * GENERIC_FAILURE
3042 *
3043 */
3044#define RIL_REQUEST_DELETE_SMS_ON_SIM 64
3045
3046/**
3047 * RIL_REQUEST_SET_BAND_MODE
3048 *
3049 * Assign a specified band for RF configuration.
3050 *
3051 * "data" is int *
3052 * ((int *)data)[0] is == 0 for "unspecified" (selected by baseband automatically)
3053 * ((int *)data)[0] is == 1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
3054 * ((int *)data)[0] is == 2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
3055 * ((int *)data)[0] is == 3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
3056 * ((int *)data)[0] is == 4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
3057 * ((int *)data)[0] is == 5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
Wink Savillef4c4d362009-04-02 01:37:03 -07003058 * ((int *)data)[0] is == 6 for "Cellular (800-MHz Band)"
3059 * ((int *)data)[0] is == 7 for "PCS (1900-MHz Band)"
3060 * ((int *)data)[0] is == 8 for "Band Class 3 (JTACS Band)"
3061 * ((int *)data)[0] is == 9 for "Band Class 4 (Korean PCS Band)"
3062 * ((int *)data)[0] is == 10 for "Band Class 5 (450-MHz Band)"
3063 * ((int *)data)[0] is == 11 for "Band Class 6 (2-GMHz IMT2000 Band)"
3064 * ((int *)data)[0] is == 12 for "Band Class 7 (Upper 700-MHz Band)"
3065 * ((int *)data)[0] is == 13 for "Band Class 8 (1800-MHz Band)"
3066 * ((int *)data)[0] is == 14 for "Band Class 9 (900-MHz Band)"
3067 * ((int *)data)[0] is == 15 for "Band Class 10 (Secondary 800-MHz Band)"
3068 * ((int *)data)[0] is == 16 for "Band Class 11 (400-MHz European PAMR Band)"
3069 * ((int *)data)[0] is == 17 for "Band Class 15 (AWS Band)"
3070 * ((int *)data)[0] is == 18 for "Band Class 16 (US 2.5-GHz Band)"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003071 *
3072 * "response" is NULL
3073 *
3074 * Valid errors:
3075 * SUCCESS
3076 * RADIO_NOT_AVAILABLE
3077 * GENERIC_FAILURE
3078 */
3079#define RIL_REQUEST_SET_BAND_MODE 65
3080
3081/**
3082 * RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE
3083 *
3084 * Query the list of band mode supported by RF.
3085 *
3086 * "data" is NULL
3087 *
3088 * "response" is int *
3089 * "response" points to an array of int's, the int[0] is the size of array, reset is one for
3090 * each available band mode.
3091 *
3092 * 0 for "unspecified" (selected by baseband automatically)
3093 * 1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
3094 * 2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
3095 * 3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
3096 * 4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
3097 * 5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
Wink Savillef4c4d362009-04-02 01:37:03 -07003098 * 6 for "Cellular (800-MHz Band)"
3099 * 7 for "PCS (1900-MHz Band)"
3100 * 8 for "Band Class 3 (JTACS Band)"
3101 * 9 for "Band Class 4 (Korean PCS Band)"
3102 * 10 for "Band Class 5 (450-MHz Band)"
3103 * 11 for "Band Class 6 (2-GMHz IMT2000 Band)"
3104 * 12 for "Band Class 7 (Upper 700-MHz Band)"
3105 * 13 for "Band Class 8 (1800-MHz Band)"
3106 * 14 for "Band Class 9 (900-MHz Band)"
3107 * 15 for "Band Class 10 (Secondary 800-MHz Band)"
3108 * 16 for "Band Class 11 (400-MHz European PAMR Band)"
3109 * 17 for "Band Class 15 (AWS Band)"
3110 * 18 for "Band Class 16 (US 2.5-GHz Band)"
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003111 *
3112 * Valid errors:
3113 * SUCCESS
3114 * RADIO_NOT_AVAILABLE
3115 * GENERIC_FAILURE
3116 *
3117 * See also: RIL_REQUEST_SET_BAND_MODE
3118 */
3119#define RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE 66
3120
3121/**
3122 * RIL_REQUEST_STK_GET_PROFILE
3123 *
3124 * Requests the profile of SIM tool kit.
3125 * The profile indicates the SAT/USAT features supported by ME.
3126 * The SAT/USAT features refer to 3GPP TS 11.14 and 3GPP TS 31.111
3127 *
3128 * "data" is NULL
3129 *
3130 * "response" is a const char * containing SAT/USAT profile
3131 * in hexadecimal format string starting with first byte of terminal profile
3132 *
3133 * Valid errors:
3134 * RIL_E_SUCCESS
3135 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3136 * RIL_E_GENERIC_FAILURE
3137 */
3138#define RIL_REQUEST_STK_GET_PROFILE 67
3139
3140/**
3141 * RIL_REQUEST_STK_SET_PROFILE
3142 *
3143 * Download the STK terminal profile as part of SIM initialization
3144 * procedure
3145 *
3146 * "data" is a const char * containing SAT/USAT profile
3147 * in hexadecimal format string starting with first byte of terminal profile
3148 *
3149 * "response" is NULL
3150 *
3151 * Valid errors:
3152 * RIL_E_SUCCESS
3153 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3154 * RIL_E_GENERIC_FAILURE
3155 */
3156#define RIL_REQUEST_STK_SET_PROFILE 68
3157
3158/**
3159 * RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND
3160 *
3161 * Requests to send a SAT/USAT envelope command to SIM.
3162 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111
3163 *
3164 * "data" is a const char * containing SAT/USAT command
3165 * in hexadecimal format string starting with command tag
3166 *
3167 * "response" is a const char * containing SAT/USAT response
3168 * in hexadecimal format string starting with first byte of response
3169 * (May be NULL)
3170 *
3171 * Valid errors:
3172 * RIL_E_SUCCESS
3173 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3174 * RIL_E_GENERIC_FAILURE
3175 */
3176#define RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND 69
3177
3178/**
3179 * RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE
3180 *
3181 * Requests to send a terminal response to SIM for a received
3182 * proactive command
3183 *
3184 * "data" is a const char * containing SAT/USAT response
3185 * in hexadecimal format string starting with first byte of response data
3186 *
3187 * "response" is NULL
3188 *
3189 * Valid errors:
3190 * RIL_E_SUCCESS
3191 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3192 * RIL_E_GENERIC_FAILURE
3193 */
3194#define RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE 70
3195
3196/**
3197 * RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM
3198 *
3199 * When STK application gets RIL_UNSOL_STK_CALL_SETUP, the call actually has
3200 * been initialized by ME already. (We could see the call has been in the 'call
3201 * list') So, STK application needs to accept/reject the call according as user
3202 * operations.
3203 *
3204 * "data" is int *
3205 * ((int *)data)[0] is > 0 for "accept" the call setup
3206 * ((int *)data)[0] is == 0 for "reject" the call setup
3207 *
3208 * "response" is NULL
3209 *
3210 * Valid errors:
3211 * RIL_E_SUCCESS
3212 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3213 * RIL_E_GENERIC_FAILURE
3214 */
3215#define RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM 71
3216
3217/**
3218 * RIL_REQUEST_EXPLICIT_CALL_TRANSFER
3219 *
3220 * Connects the two calls and disconnects the subscriber from both calls.
Wink Saville7f856802009-06-09 10:23:37 -07003221 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003222 * "data" is NULL
3223 * "response" is NULL
3224 *
3225 * Valid errors:
Wink Saville7f856802009-06-09 10:23:37 -07003226 * SUCCESS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003227 * RADIO_NOT_AVAILABLE (radio resetting)
3228 * GENERIC_FAILURE
3229 */
3230#define RIL_REQUEST_EXPLICIT_CALL_TRANSFER 72
3231
3232/**
3233 * RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
3234 *
3235 * Requests to set the preferred network type for searching and registering
3236 * (CS/PS domain, RAT, and operation mode)
3237 *
Wink Savillec0114b32011-02-18 10:14:07 -08003238 * "data" is int * which is RIL_PreferredNetworkType
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003239 *
3240 * "response" is NULL
3241 *
3242 * Valid errors:
Wink Savillef4c4d362009-04-02 01:37:03 -07003243 * SUCCESS
3244 * RADIO_NOT_AVAILABLE (radio resetting)
3245 * GENERIC_FAILURE
3246 * MODE_NOT_SUPPORTED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003247 */
3248#define RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE 73
3249
3250/**
3251 * RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE
3252 *
3253 * Query the preferred network type (CS/PS domain, RAT, and operation mode)
3254 * for searching and registering
3255 *
3256 * "data" is NULL
3257 *
3258 * "response" is int *
Wink Savillec0114b32011-02-18 10:14:07 -08003259 * ((int *)reponse)[0] is == RIL_PreferredNetworkType
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003260 *
3261 * Valid errors:
3262 * SUCCESS
3263 * RADIO_NOT_AVAILABLE
3264 * GENERIC_FAILURE
3265 *
3266 * See also: RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
3267 */
3268#define RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE 74
3269
3270/**
3271 * RIL_REQUEST_NEIGHBORING_CELL_IDS
3272 *
3273 * Request neighboring cell id in GSM network
3274 *
3275 * "data" is NULL
3276 * "response" must be a " const RIL_NeighboringCell** "
3277 *
3278 * Valid errors:
3279 * SUCCESS
3280 * RADIO_NOT_AVAILABLE
3281 * GENERIC_FAILURE
3282 */
3283#define RIL_REQUEST_GET_NEIGHBORING_CELL_IDS 75
3284
3285/**
3286 * RIL_REQUEST_SET_LOCATION_UPDATES
Wink Saville3d54e742009-05-18 18:00:44 -07003287 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003288 * Enables/disables network state change notifications due to changes in
jsh43265612009-09-29 17:46:11 -07003289 * LAC and/or CID (for GSM) or BID/SID/NID/latitude/longitude (for CDMA).
3290 * Basically +CREG=2 vs. +CREG=1 (TS 27.007).
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003291 *
3292 * Note: The RIL implementation should default to "updates enabled"
3293 * when the screen is on and "updates disabled" when the screen is off.
3294 *
3295 * "data" is int *
3296 * ((int *)data)[0] is == 1 for updates enabled (+CREG=2)
3297 * ((int *)data)[0] is == 0 for updates disabled (+CREG=1)
3298 *
3299 * "response" is NULL
Wink Saville3d54e742009-05-18 18:00:44 -07003300 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08003301 * Valid errors:
3302 * SUCCESS
3303 * RADIO_NOT_AVAILABLE
3304 * GENERIC_FAILURE
3305 *
3306 * See also: RIL_REQUEST_SCREEN_STATE, RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED
3307 */
3308#define RIL_REQUEST_SET_LOCATION_UPDATES 76
3309
Wink Savillef4c4d362009-04-02 01:37:03 -07003310/**
Wink Savillec0114b32011-02-18 10:14:07 -08003311 * RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE
Wink Saville7f856802009-06-09 10:23:37 -07003312 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003313 * Request to set the location where the CDMA subscription shall
3314 * be retrieved
3315 *
3316 * "data" is int *
Wink Savillec0114b32011-02-18 10:14:07 -08003317 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
Wink Savillef4c4d362009-04-02 01:37:03 -07003318 *
3319 * "response" is NULL
3320 *
3321 * Valid errors:
3322 * SUCCESS
3323 * RADIO_NOT_AVAILABLE
3324 * GENERIC_FAILURE
3325 * SIM_ABSENT
3326 * SUBSCRIPTION_NOT_AVAILABLE
Wink Savillec0114b32011-02-18 10:14:07 -08003327 *
3328 * See also: RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE
Wink Savillef4c4d362009-04-02 01:37:03 -07003329 */
Wink Savillec0114b32011-02-18 10:14:07 -08003330#define RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE 77
Wink Savillef4c4d362009-04-02 01:37:03 -07003331
3332/**
3333 * RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE
Wink Saville7f856802009-06-09 10:23:37 -07003334 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003335 * Request to set the roaming preferences in CDMA
3336 *
3337 * "data" is int *
3338 * ((int *)data)[0] is == 0 for Home Networks only, as defined in PRL
3339 * ((int *)data)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
3340 * ((int *)data)[0] is == 2 for Roaming on Any Network, as defined in the PRL
Wink Saville7f856802009-06-09 10:23:37 -07003341 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003342 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003343 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003344 * Valid errors:
3345 * SUCCESS
3346 * RADIO_NOT_AVAILABLE
3347 * GENERIC_FAILURE
3348 */
3349#define RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE 78
3350
3351/**
3352 * RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE
Wink Saville7f856802009-06-09 10:23:37 -07003353 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003354 * Request the actual setting of the roaming preferences in CDMA in the modem
3355 *
3356 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003357 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003358 * "response" is int *
3359 * ((int *)response)[0] is == 0 for Home Networks only, as defined in PRL
3360 * ((int *)response)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
3361 * ((int *)response)[0] is == 2 for Roaming on Any Network, as defined in the PRL
Wink Saville7f856802009-06-09 10:23:37 -07003362 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003363 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003364 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003365 * Valid errors:
3366 * SUCCESS
3367 * RADIO_NOT_AVAILABLE
3368 * GENERIC_FAILURE
3369 */
3370#define RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE 79
3371
3372/**
3373 * RIL_REQUEST_SET_TTY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07003374 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003375 * Request to set the TTY mode
3376 *
3377 * "data" is int *
3378 * ((int *)data)[0] is == 0 for TTY off
Wink Saville1b5fd232009-04-22 14:50:00 -07003379 * ((int *)data)[0] is == 1 for TTY Full
3380 * ((int *)data)[0] is == 2 for TTY HCO (hearing carryover)
3381 * ((int *)data)[0] is == 3 for TTY VCO (voice carryover)
Wink Saville7f856802009-06-09 10:23:37 -07003382 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003383 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003384 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003385 * Valid errors:
3386 * SUCCESS
3387 * RADIO_NOT_AVAILABLE
3388 * GENERIC_FAILURE
3389 */
3390#define RIL_REQUEST_SET_TTY_MODE 80
3391
3392/**
3393 * RIL_REQUEST_QUERY_TTY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07003394 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003395 * Request the setting of TTY mode
3396 *
3397 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003398 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003399 * "response" is int *
3400 * ((int *)response)[0] is == 0 for TTY off
Wink Saville1b5fd232009-04-22 14:50:00 -07003401 * ((int *)response)[0] is == 1 for TTY Full
3402 * ((int *)response)[0] is == 2 for TTY HCO (hearing carryover)
3403 * ((int *)response)[0] is == 3 for TTY VCO (voice carryover)
Wink Savillef4c4d362009-04-02 01:37:03 -07003404 *
3405 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003406 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003407 * Valid errors:
3408 * SUCCESS
3409 * RADIO_NOT_AVAILABLE
3410 * GENERIC_FAILURE
3411 */
3412#define RIL_REQUEST_QUERY_TTY_MODE 81
3413
3414/**
3415 * RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE
3416 *
3417 * Request to set the preferred voice privacy mode used in voice
3418 * scrambling
3419 *
3420 * "data" is int *
3421 * ((int *)data)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
3422 * ((int *)data)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
Wink Saville7f856802009-06-09 10:23:37 -07003423 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003424 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003425 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003426 * Valid errors:
3427 * SUCCESS
3428 * RADIO_NOT_AVAILABLE
3429 * GENERIC_FAILURE
3430 */
3431#define RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE 82
3432
3433/**
3434 * RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE
Wink Saville7f856802009-06-09 10:23:37 -07003435 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003436 * Request the setting of preferred voice privacy mode
3437 *
3438 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003439 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003440 * "response" is int *
3441 * ((int *)response)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
3442 * ((int *)response)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
Wink Saville7f856802009-06-09 10:23:37 -07003443 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003444 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003445 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003446 * Valid errors:
3447 * SUCCESS
3448 * RADIO_NOT_AVAILABLE
3449 * GENERIC_FAILURE
3450 */
3451#define RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE 83
3452
3453/**
3454 * RIL_REQUEST_CDMA_FLASH
3455 *
3456 * Send FLASH
3457 *
3458 * "data" is const char *
3459 * ((const char *)data)[0] is a FLASH string
Wink Saville7f856802009-06-09 10:23:37 -07003460 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003461 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003462 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003463 * Valid errors:
3464 * SUCCESS
3465 * RADIO_NOT_AVAILABLE
3466 * GENERIC_FAILURE
3467 *
3468 */
3469#define RIL_REQUEST_CDMA_FLASH 84
3470
3471/**
3472 * RIL_REQUEST_CDMA_BURST_DTMF
3473 *
3474 * Send DTMF string
3475 *
jsh602f80f2009-07-10 15:44:37 -07003476 * "data" is const char **
3477 * ((const char **)data)[0] is a DTMF string
3478 * ((const char **)data)[1] is the DTMF ON length in milliseconds, or 0 to use
3479 * default
3480 * ((const char **)data)[2] is the DTMF OFF length in milliseconds, or 0 to use
3481 * default
Wink Saville7f856802009-06-09 10:23:37 -07003482 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003483 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003484 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003485 * Valid errors:
3486 * SUCCESS
3487 * RADIO_NOT_AVAILABLE
3488 * GENERIC_FAILURE
3489 *
3490 */
3491#define RIL_REQUEST_CDMA_BURST_DTMF 85
3492
3493/**
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003494 * RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY
Wink Savillef4c4d362009-04-02 01:37:03 -07003495 *
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003496 * Takes a 26 digit string (20 digit AKEY + 6 digit checksum).
3497 * If the checksum is valid the 20 digit AKEY is written to NV,
3498 * replacing the existing AKEY no matter what it was before.
Wink Savillef4c4d362009-04-02 01:37:03 -07003499 *
3500 * "data" is const char *
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003501 * ((const char *)data)[0] is a 26 digit string (ASCII digits '0'-'9')
3502 * where the last 6 digits are a checksum of the
3503 * first 20, as specified in TR45.AHAG
3504 * "Common Cryptographic Algorithms, Revision D.1
3505 * Section 2.2"
Wink Saville7f856802009-06-09 10:23:37 -07003506 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003507 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003508 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003509 * Valid errors:
3510 * SUCCESS
3511 * RADIO_NOT_AVAILABLE
3512 * GENERIC_FAILURE
3513 *
3514 */
Naveen Kalla03c1edf2009-09-23 11:18:35 -07003515#define RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY 86
Wink Savillef4c4d362009-04-02 01:37:03 -07003516
3517/**
3518 * RIL_REQUEST_CDMA_SEND_SMS
3519 *
3520 * Send a CDMA SMS message
3521 *
3522 * "data" is const RIL_CDMA_SMS_Message *
Wink Saville7f856802009-06-09 10:23:37 -07003523 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003524 * "response" is a const RIL_SMS_Response *
Wink Saville7f856802009-06-09 10:23:37 -07003525 *
johnwangbfb151b2009-09-11 15:20:38 -07003526 * Based on the return error, caller decides to resend if sending sms
3527 * fails. The CDMA error class is derived as follows,
3528 * SUCCESS is error class 0 (no error)
3529 * SMS_SEND_FAIL_RETRY is error class 2 (temporary failure)
3530 * and GENERIC_FAILURE is error class 3 (permanent and no retry)
3531 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003532 * Valid errors:
3533 * SUCCESS
3534 * RADIO_NOT_AVAILABLE
Wink Saville1b5fd232009-04-22 14:50:00 -07003535 * SMS_SEND_FAIL_RETRY
Wink Savillef4c4d362009-04-02 01:37:03 -07003536 * GENERIC_FAILURE
3537 *
3538 */
3539#define RIL_REQUEST_CDMA_SEND_SMS 87
3540
3541/**
3542 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
3543 *
3544 * Acknowledge the success or failure in the receipt of SMS
3545 * previously indicated via RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
3546 *
3547 * "data" is const RIL_CDMA_SMS_Ack *
Wink Saville7f856802009-06-09 10:23:37 -07003548 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003549 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003550 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003551 * Valid errors:
3552 * SUCCESS
3553 * RADIO_NOT_AVAILABLE
3554 * GENERIC_FAILURE
3555 *
3556 */
3557#define RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE 88
3558
3559/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003560 * RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003561 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003562 * Request the setting of GSM/WCDMA Cell Broadcast SMS config.
3563 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003564 * "data" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003565 *
3566 * "response" is a const RIL_GSM_BroadcastSmsConfigInfo **
3567 * "responselen" is count * sizeof (RIL_GSM_BroadcastSmsConfigInfo *)
3568 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003569 * Valid errors:
3570 * SUCCESS
3571 * RADIO_NOT_AVAILABLE
3572 * GENERIC_FAILURE
3573 *
3574 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003575#define RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG 89
Wink Savillef4c4d362009-04-02 01:37:03 -07003576
3577/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003578 * RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003579 *
3580 * Set GSM/WCDMA Cell Broadcast SMS config
3581 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003582 * "data" is a const RIL_GSM_BroadcastSmsConfigInfo **
3583 * "datalen" is count * sizeof(RIL_GSM_BroadcastSmsConfigInfo *)
3584 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003585 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003586 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003587 * Valid errors:
3588 * SUCCESS
3589 * RADIO_NOT_AVAILABLE
3590 * GENERIC_FAILURE
3591 *
3592 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003593#define RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG 90
Wink Savillef4c4d362009-04-02 01:37:03 -07003594
3595/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003596 * RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION
Wink Savillef4c4d362009-04-02 01:37:03 -07003597 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003598* Enable or disable the reception of GSM/WCDMA Cell Broadcast SMS
Wink Savillef4c4d362009-04-02 01:37:03 -07003599 *
3600 * "data" is const int *
3601 * (const int *)data[0] indicates to activate or turn off the
3602 * reception of GSM/WCDMA Cell Broadcast SMS, 0-1,
3603 * 0 - Activate, 1 - Turn off
Wink Savillea592eeb2009-05-22 13:26:36 -07003604 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003605 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003606 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003607 * Valid errors:
3608 * SUCCESS
3609 * RADIO_NOT_AVAILABLE
3610 * GENERIC_FAILURE
3611 *
3612 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003613#define RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION 91
Wink Savillef4c4d362009-04-02 01:37:03 -07003614
3615/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003616 * RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003617 *
3618 * Request the setting of CDMA Broadcast SMS config
3619 *
3620 * "data" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003621 *
3622 * "response" is a const RIL_CDMA_BroadcastSmsConfigInfo **
3623 * "responselen" is count * sizeof (RIL_CDMA_BroadcastSmsConfigInfo *)
3624 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003625 * Valid errors:
3626 * SUCCESS
3627 * RADIO_NOT_AVAILABLE
3628 * GENERIC_FAILURE
3629 *
3630 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003631#define RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG 92
Wink Savillef4c4d362009-04-02 01:37:03 -07003632
3633/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003634 * RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG
Wink Savillef4c4d362009-04-02 01:37:03 -07003635 *
3636 * Set CDMA Broadcast SMS config
3637 *
Wink Savillea592eeb2009-05-22 13:26:36 -07003638 * "data" is an const RIL_CDMA_BroadcastSmsConfigInfo **
3639 * "datalen" is count * sizeof(const RIL_CDMA_BroadcastSmsConfigInfo *)
3640 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003641 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003642 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003643 * Valid errors:
3644 * SUCCESS
3645 * RADIO_NOT_AVAILABLE
3646 * GENERIC_FAILURE
3647 *
3648 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003649#define RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG 93
Wink Savillef4c4d362009-04-02 01:37:03 -07003650
3651/**
Wink Savillea592eeb2009-05-22 13:26:36 -07003652 * RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION
Wink Savillef4c4d362009-04-02 01:37:03 -07003653 *
3654 * Enable or disable the reception of CDMA Broadcast SMS
3655 *
3656 * "data" is const int *
3657 * (const int *)data[0] indicates to activate or turn off the
3658 * reception of CDMA Broadcast SMS, 0-1,
3659 * 0 - Activate, 1 - Turn off
Wink Savillea592eeb2009-05-22 13:26:36 -07003660 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003661 * "response" is NULL
Wink Savillea592eeb2009-05-22 13:26:36 -07003662 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003663 * Valid errors:
3664 * SUCCESS
3665 * RADIO_NOT_AVAILABLE
3666 * GENERIC_FAILURE
3667 *
3668 */
Wink Savillea592eeb2009-05-22 13:26:36 -07003669#define RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION 94
Wink Savillef4c4d362009-04-02 01:37:03 -07003670
3671/**
3672 * RIL_REQUEST_CDMA_SUBSCRIPTION
3673 *
3674 * Request the device MDN / H_SID / H_NID.
3675 *
3676 * The request is only allowed when CDMA subscription is available. When CDMA
3677 * subscription is changed, application layer should re-issue the request to
3678 * update the subscription information.
3679 *
3680 * If a NULL value is returned for any of the device id, it means that error
3681 * accessing the device.
3682 *
3683 * "response" is const char **
3684 * ((const char **)response)[0] is MDN if CDMA subscription is available
jsh29be25c2009-07-14 20:18:59 -07003685 * ((const char **)response)[1] is a comma separated list of H_SID (Home SID) if
3686 * CDMA subscription is available, in decimal format
3687 * ((const char **)response)[2] is a comma separated list of H_NID (Home NID) if
3688 * CDMA subscription is available, in decimal format
Wink Saville1b5fd232009-04-22 14:50:00 -07003689 * ((const char **)response)[3] is MIN (10 digits, MIN2+MIN1) if CDMA subscription is available
Wink Savilled4ee7dc2009-06-05 15:11:30 -07003690 * ((const char **)response)[4] is PRL version if CDMA subscription is available
Wink Savillef4c4d362009-04-02 01:37:03 -07003691 *
3692 * Valid errors:
3693 * SUCCESS
3694 * RIL_E_SUBSCRIPTION_NOT_AVAILABLE
3695 */
3696
Wink Savilleeafe79d2009-04-03 18:02:34 -07003697#define RIL_REQUEST_CDMA_SUBSCRIPTION 95
Wink Savillef4c4d362009-04-02 01:37:03 -07003698
3699/**
3700 * RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM
3701 *
3702 * Stores a CDMA SMS message to RUIM memory.
3703 *
3704 * "data" is RIL_CDMA_SMS_WriteArgs *
3705 *
3706 * "response" is int *
3707 * ((const int *)response)[0] is the record index where the message is stored.
3708 *
3709 * Valid errors:
3710 * SUCCESS
3711 * RADIO_NOT_AVAILABLE
3712 * GENERIC_FAILURE
3713 *
3714 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003715#define RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM 96
Wink Savillef4c4d362009-04-02 01:37:03 -07003716
3717/**
3718 * RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM
3719 *
3720 * Deletes a CDMA SMS message from RUIM memory.
3721 *
3722 * "data" is int *
3723 * ((int *)data)[0] is the record index of the message to delete.
3724 *
3725 * "response" is NULL
3726 *
3727 * Valid errors:
3728 * SUCCESS
3729 * RADIO_NOT_AVAILABLE
3730 * GENERIC_FAILURE
3731 *
3732 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003733#define RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM 97
Wink Savillef4c4d362009-04-02 01:37:03 -07003734
3735/**
3736 * RIL_REQUEST_DEVICE_IDENTITY
Wink Savilleeafe79d2009-04-03 18:02:34 -07003737 *
3738 * Request the device ESN / MEID / IMEI / IMEISV.
3739 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003740 * The request is always allowed and contains GSM and CDMA device identity;
Wink Savilleeafe79d2009-04-03 18:02:34 -07003741 * it substitutes the deprecated requests RIL_REQUEST_GET_IMEI and
Wink Savillef4c4d362009-04-02 01:37:03 -07003742 * RIL_REQUEST_GET_IMEISV.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003743 *
3744 * If a NULL value is returned for any of the device id, it means that error
Wink Savillef4c4d362009-04-02 01:37:03 -07003745 * accessing the device.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003746 *
3747 * When CDMA subscription is changed the ESN/MEID may change. The application
Wink Savillef4c4d362009-04-02 01:37:03 -07003748 * layer should re-issue the request to update the device identity in this case.
Wink Savilleeafe79d2009-04-03 18:02:34 -07003749 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003750 * "response" is const char **
Wink Savilleeafe79d2009-04-03 18:02:34 -07003751 * ((const char **)response)[0] is IMEI if GSM subscription is available
3752 * ((const char **)response)[1] is IMEISV if GSM subscription is available
3753 * ((const char **)response)[2] is ESN if CDMA subscription is available
3754 * ((const char **)response)[3] is MEID if CDMA subscription is available
3755 *
Wink Savillef4c4d362009-04-02 01:37:03 -07003756 * Valid errors:
3757 * SUCCESS
3758 * RADIO_NOT_AVAILABLE
3759 * GENERIC_FAILURE
3760 */
Wink Savilleeafe79d2009-04-03 18:02:34 -07003761#define RIL_REQUEST_DEVICE_IDENTITY 98
Wink Savillef4c4d362009-04-02 01:37:03 -07003762
Wink Saville1b5fd232009-04-22 14:50:00 -07003763/**
3764 * RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE
3765 *
3766 * Request the radio's system selection module to exit emergency
3767 * callback mode. RIL will not respond with SUCCESS until the modem has
3768 * completely exited from Emergency Callback Mode.
3769 *
3770 * "data" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003771 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003772 * "response" is NULL
Wink Saville7f856802009-06-09 10:23:37 -07003773 *
Wink Saville1b5fd232009-04-22 14:50:00 -07003774 * Valid errors:
3775 * SUCCESS
3776 * RADIO_NOT_AVAILABLE
3777 * GENERIC_FAILURE
3778 *
3779 */
3780#define RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE 99
Wink Savillef4c4d362009-04-02 01:37:03 -07003781
jsh000a9fe2009-05-11 14:52:35 -07003782/**
3783 * RIL_REQUEST_GET_SMSC_ADDRESS
3784 *
3785 * Queries the default Short Message Service Center address on the device.
3786 *
3787 * "data" is NULL
3788 *
3789 * "response" is const char * containing the SMSC address.
3790 *
3791 * Valid errors:
3792 * SUCCESS
3793 * RADIO_NOT_AVAILABLE
3794 * GENERIC_FAILURE
3795 *
3796 */
3797#define RIL_REQUEST_GET_SMSC_ADDRESS 100
3798
3799/**
3800 * RIL_REQUEST_SET_SMSC_ADDRESS
3801 *
3802 * Sets the default Short Message Service Center address on the device.
3803 *
3804 * "data" is const char * containing the SMSC address.
3805 *
3806 * "response" is NULL
3807 *
3808 * Valid errors:
3809 * SUCCESS
3810 * RADIO_NOT_AVAILABLE
3811 * GENERIC_FAILURE
3812 *
3813 */
3814#define RIL_REQUEST_SET_SMSC_ADDRESS 101
3815
jshb60444e2009-05-29 11:09:17 -07003816/**
3817 * RIL_REQUEST_REPORT_SMS_MEMORY_STATUS
3818 *
3819 * Indicates whether there is storage available for new SMS messages.
3820 *
3821 * "data" is int *
3822 * ((int *)data)[0] is 1 if memory is available for storing new messages
3823 * is 0 if memory capacity is exceeded
3824 *
3825 * "response" is NULL
3826 *
3827 * Valid errors:
3828 * SUCCESS
3829 * RADIO_NOT_AVAILABLE
3830 * GENERIC_FAILURE
3831 *
3832 */
3833#define RIL_REQUEST_REPORT_SMS_MEMORY_STATUS 102
3834
Wink Saville2641d5b2009-06-08 17:40:42 -07003835/**
3836 * RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING
3837 *
3838 * Indicates that the StkSerivce is running and is
3839 * ready to receive RIL_UNSOL_STK_XXXXX commands.
3840 *
3841 * "data" is NULL
3842 * "response" is NULL
3843 *
3844 * Valid errors:
3845 * SUCCESS
3846 * RADIO_NOT_AVAILABLE
3847 * GENERIC_FAILURE
3848 *
3849 */
3850#define RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING 103
3851
Wink Savillec0114b32011-02-18 10:14:07 -08003852/**
3853 * RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE
3854 *
3855 * Request to query the location where the CDMA subscription shall
3856 * be retrieved
3857 *
3858 * "data" is NULL
3859 *
3860 * "response" is int *
3861 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
3862 *
3863 * Valid errors:
3864 * SUCCESS
3865 * RADIO_NOT_AVAILABLE
3866 * GENERIC_FAILURE
3867 * SUBSCRIPTION_NOT_AVAILABLE
3868 *
3869 * See also: RIL_REQUEST_CDMA_SET_SUBSCRIPTION_SOURCE
3870 */
3871#define RIL_REQUEST_CDMA_GET_SUBSCRIPTION_SOURCE 104
3872
Jake Hambyfa8d5842011-08-19 16:22:18 -07003873/**
3874 * RIL_REQUEST_ISIM_AUTHENTICATION
3875 *
3876 * Request the ISIM application on the UICC to perform AKA
3877 * challenge/response algorithm for IMS authentication
3878 *
3879 * "data" is a const char * containing the challenge string in Base64 format
3880 * "response" is a const char * containing the response in Base64 format
3881 *
3882 * Valid errors:
3883 * SUCCESS
3884 * RADIO_NOT_AVAILABLE
3885 * GENERIC_FAILURE
3886 */
3887#define RIL_REQUEST_ISIM_AUTHENTICATION 105
3888
Jake Hamby300105d2011-09-26 01:01:44 -07003889/**
3890 * RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU
3891 *
3892 * Acknowledge successful or failed receipt of SMS previously indicated
3893 * via RIL_UNSOL_RESPONSE_NEW_SMS, including acknowledgement TPDU to send
3894 * as the RP-User-Data element of the RP-ACK or RP-ERROR PDU.
3895 *
3896 * "data" is const char **
3897 * ((const char **)data)[0] is "1" on successful receipt (send RP-ACK)
3898 * is "0" on failed receipt (send RP-ERROR)
3899 * ((const char **)data)[1] is the acknowledgement TPDU in hexadecimal format
3900 *
3901 * "response" is NULL
3902 *
3903 * Valid errors:
3904 * SUCCESS
3905 * RADIO_NOT_AVAILABLE
3906 * GENERIC_FAILURE
3907 */
3908#define RIL_REQUEST_ACKNOWLEDGE_INCOMING_GSM_SMS_WITH_PDU 106
3909
3910/**
3911 * RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS
3912 *
3913 * Requests to send a SAT/USAT envelope command to SIM.
3914 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111.
3915 *
3916 * This request has one difference from RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND:
3917 * the SW1 and SW2 status bytes from the UICC response are returned along with
3918 * the response data, using the same structure as RIL_REQUEST_SIM_IO.
3919 *
3920 * The RIL implementation shall perform the normal processing of a '91XX'
3921 * response in SW1/SW2 to retrieve the pending proactive command and send it
3922 * as an unsolicited response, as RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND does.
3923 *
3924 * "data" is a const char * containing the SAT/USAT command
3925 * in hexadecimal format starting with command tag
3926 *
3927 * "response" is a const RIL_SIM_IO_Response *
3928 *
3929 * Valid errors:
3930 * RIL_E_SUCCESS
3931 * RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
3932 * RIL_E_GENERIC_FAILURE
3933 */
3934#define RIL_REQUEST_STK_SEND_ENVELOPE_WITH_STATUS 107
3935
Naveen Kalla2bc78d62011-12-07 16:22:53 -08003936/**
3937 * RIL_REQUEST_VOICE_RADIO_TECH
3938 *
3939 * Query the radio technology type (3GPP/3GPP2) used for voice. Query is valid only
3940 * when radio state is RADIO_STATE_ON
3941 *
3942 * "data" is NULL
3943 * "response" is int *
3944 * ((int *) response)[0] is of type const RIL_RadioTechnology
3945 *
3946 * Valid errors:
3947 * SUCCESS
3948 * RADIO_NOT_AVAILABLE
3949 * GENERIC_FAILURE
3950 */
3951#define RIL_REQUEST_VOICE_RADIO_TECH 108
3952
Wink Saville8a9e0212013-04-09 12:11:38 -07003953/**
3954 * RIL_REQUEST_GET_CELL_INFO_LIST
3955 *
3956 * Request all of the current cell information known to the radio. The radio
3957 * must a list of all current cells, including the neighboring cells. If for a particular
3958 * cell information isn't known then the appropriate unknown value will be returned.
3959 * This does not cause or change the rate of RIL_UNSOL_CELL_INFO_LIST.
3960 *
3961 * "data" is NULL
3962 *
3963 * "response" is an array of RIL_CellInfo.
3964 */
3965#define RIL_REQUEST_GET_CELL_INFO_LIST 109
3966
3967/**
3968 * RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE
3969 *
3970 * Sets the minimum time between when RIL_UNSOL_CELL_INFO_LIST should be invoked.
Wink Savillec57b3eb2013-04-17 12:51:41 -07003971 * A value of 0, means invoke RIL_UNSOL_CELL_INFO_LIST when any of the reported
Wink Saville8a9e0212013-04-09 12:11:38 -07003972 * information changes. Setting the value to INT_MAX(0x7fffffff) means never issue
3973 * a RIL_UNSOL_CELL_INFO_LIST.
3974 *
3975 * "data" is int *
3976 * ((int *)data)[0] is minimum time in milliseconds
3977 *
3978 * "response" is NULL
3979 *
3980 * Valid errors:
3981 * SUCCESS
3982 * RADIO_NOT_AVAILABLE
3983 * GENERIC_FAILURE
3984 */
3985#define RIL_REQUEST_SET_UNSOL_CELL_INFO_LIST_RATE 110
Jake Hamby300105d2011-09-26 01:01:44 -07003986
Sungmin Choi75697532013-04-26 15:04:45 -07003987/**
3988 * RIL_REQUEST_SET_INITIAL_ATTACH_APN
3989 *
3990 * Set an apn to initial attach network
3991 * "response" is NULL
3992 *
3993 * Valid errors:
3994 * SUCCESS
3995 * RADIO_NOT_AVAILABLE (radio resetting)
3996 * GENERIC_FAILURE
3997 * SUBSCRIPTION_NOT_AVAILABLE
3998 */
3999#define RIL_REQUEST_SET_INITIAL_ATTACH_APN 111
4000
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004001/**
4002 * RIL_REQUEST_IMS_REGISTRATION_STATE
4003 *
4004 * Request current IMS registration state
4005 *
4006 * "data" is NULL
4007 *
4008 * "response" is int *
4009 * ((int *)response)[0] is registration state:
4010 * 0 - Not registered
4011 * 1 - Registered
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004012 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004013 * If ((int*)response)[0] is = 1, then ((int *) response)[1]
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004014 * must follow with IMS SMS format:
4015 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004016 * ((int *) response)[1] is of type RIL_RadioTechnologyFamily
4017 *
4018 * Valid errors:
4019 * SUCCESS
4020 * RADIO_NOT_AVAILABLE
4021 * GENERIC_FAILURE
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004022 */
4023#define RIL_REQUEST_IMS_REGISTRATION_STATE 112
4024
4025/**
4026 * RIL_REQUEST_IMS_SEND_SMS
4027 *
4028 * Send a SMS message over IMS
4029 *
4030 * "data" is const RIL_IMS_SMS_Message *
4031 *
4032 * "response" is a const RIL_SMS_Response *
4033 *
4034 * Based on the return error, caller decides to resend if sending sms
4035 * fails. SMS_SEND_FAIL_RETRY means retry, and other errors means no retry.
4036 * In case of retry, data is encoded based on Voice Technology available.
4037 *
4038 * Valid errors:
4039 * SUCCESS
4040 * RADIO_NOT_AVAILABLE
4041 * SMS_SEND_FAIL_RETRY
4042 * FDN_CHECK_FAILURE
4043 * GENERIC_FAILURE
4044 *
4045 */
4046#define RIL_REQUEST_IMS_SEND_SMS 113
4047
Shishir Agrawal2458d8d2013-11-27 14:53:05 -08004048/**
4049 * RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC
4050 *
4051 * Request APDU exchange on the basic channel. This command reflects TS 27.007
4052 * "generic SIM access" operation (+CSIM). The modem must ensure proper function
4053 * of GSM/CDMA, and filter commands appropriately. It should filter
4054 * channel management and SELECT by DF name commands.
4055 *
4056 * "data" is a const RIL_SIM_APDU *
4057 * "sessionid" field should be ignored.
4058 *
4059 * "response" is a const RIL_SIM_IO_Response *
4060 *
4061 * Valid errors:
4062 * SUCCESS
4063 * RADIO_NOT_AVAILABLE
4064 * GENERIC_FAILURE
4065 */
4066#define RIL_REQUEST_SIM_TRANSMIT_APDU_BASIC 114
4067
4068/**
4069 * RIL_REQUEST_SIM_OPEN_CHANNEL
4070 *
4071 * Open a new logical channel and select the given application. This command
4072 * reflects TS 27.007 "open logical channel" operation (+CCHO).
4073 *
4074 * "data" is const char * and set to AID value, See ETSI 102.221 and 101.220.
4075 *
4076 * "response" is int *
4077 * ((int *)data)[0] contains the session id of the logical channel.
Shishir Agrawal760123f2014-10-14 09:14:57 -07004078 * ((int *)data)[1] onwards may optionally contain the select response for the
4079 * open channel command with one byte per integer.
Shishir Agrawal2458d8d2013-11-27 14:53:05 -08004080 *
4081 * Valid errors:
4082 * SUCCESS
4083 * RADIO_NOT_AVAILABLE
4084 * GENERIC_FAILURE
4085 * MISSING_RESOURCE
4086 * NO_SUCH_ELEMENT
4087 */
4088#define RIL_REQUEST_SIM_OPEN_CHANNEL 115
4089
4090/**
4091 * RIL_REQUEST_SIM_CLOSE_CHANNEL
4092 *
4093 * Close a previously opened logical channel. This command reflects TS 27.007
4094 * "close logical channel" operation (+CCHC).
4095 *
4096 * "data" is int *
4097 * ((int *)data)[0] is the session id of logical the channel to close.
4098 *
4099 * "response" is NULL
4100 *
4101 * Valid errors:
4102 * SUCCESS
4103 * RADIO_NOT_AVAILABLE
4104 * GENERIC_FAILURE
4105 */
4106#define RIL_REQUEST_SIM_CLOSE_CHANNEL 116
4107
4108/**
4109 * RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL
4110 *
4111 * Exchange APDUs with a UICC over a previously opened logical channel. This
4112 * command reflects TS 27.007 "generic logical channel access" operation
4113 * (+CGLA). The modem should filter channel management and SELECT by DF name
4114 * commands.
4115 *
4116 * "data" is a const RIL_SIM_APDU*
4117 *
4118 * "response" is a const RIL_SIM_IO_Response *
4119 *
4120 * Valid errors:
4121 * SUCCESS
4122 * RADIO_NOT_AVAILABLE
4123 * GENERIC_FAILURE
4124 */
4125#define RIL_REQUEST_SIM_TRANSMIT_APDU_CHANNEL 117
4126
Jake Hamby8a4a2332014-01-15 13:12:05 -08004127/**
4128 * RIL_REQUEST_NV_READ_ITEM
4129 *
4130 * Read one of the radio NV items defined in RadioNVItems.java / ril_nv_items.h.
4131 * This is used for device configuration by some CDMA operators.
4132 *
4133 * "data" is a const RIL_NV_ReadItem *
4134 *
4135 * "response" is const char * containing the contents of the NV item
4136 *
4137 * Valid errors:
4138 * SUCCESS
4139 * RADIO_NOT_AVAILABLE
4140 * GENERIC_FAILURE
4141 */
4142#define RIL_REQUEST_NV_READ_ITEM 118
4143
4144/**
4145 * RIL_REQUEST_NV_WRITE_ITEM
4146 *
4147 * Write one of the radio NV items defined in RadioNVItems.java / ril_nv_items.h.
4148 * This is used for device configuration by some CDMA operators.
4149 *
4150 * "data" is a const RIL_NV_WriteItem *
4151 *
4152 * "response" is NULL
4153 *
4154 * Valid errors:
4155 * SUCCESS
4156 * RADIO_NOT_AVAILABLE
4157 * GENERIC_FAILURE
4158 */
4159#define RIL_REQUEST_NV_WRITE_ITEM 119
4160
4161/**
4162 * RIL_REQUEST_NV_WRITE_CDMA_PRL
4163 *
4164 * Update the CDMA Preferred Roaming List (PRL) in the radio NV storage.
4165 * This is used for device configuration by some CDMA operators.
4166 *
4167 * "data" is a const char * containing the PRL as a byte array
4168 *
4169 * "response" is NULL
4170 *
4171 * Valid errors:
4172 * SUCCESS
4173 * RADIO_NOT_AVAILABLE
4174 * GENERIC_FAILURE
4175 */
4176#define RIL_REQUEST_NV_WRITE_CDMA_PRL 120
4177
4178/**
4179 * RIL_REQUEST_NV_RESET_CONFIG
4180 *
4181 * Reset the radio NV configuration to the factory state.
4182 * This is used for device configuration by some CDMA operators.
4183 *
4184 * "data" is int *
Jake Hambyd27c9d52014-02-06 14:52:05 -08004185 * ((int *)data)[0] is 1 to reload all NV items
4186 * ((int *)data)[0] is 2 for erase NV reset (SCRTN)
4187 * ((int *)data)[0] is 3 for factory reset (RTN)
Jake Hamby8a4a2332014-01-15 13:12:05 -08004188 *
4189 * "response" is NULL
4190 *
4191 * Valid errors:
4192 * SUCCESS
4193 * RADIO_NOT_AVAILABLE
4194 * GENERIC_FAILURE
4195 */
4196#define RIL_REQUEST_NV_RESET_CONFIG 121
4197
Etan Cohend3652192014-06-20 08:28:44 -07004198 /** RIL_REQUEST_SET_UICC_SUBSCRIPTION
4199 * FIXME This API needs to have more documentation.
4200 *
4201 * Selection/de-selection of a subscription from a SIM card
4202 * "data" is const RIL_SelectUiccSub*
4203
4204 *
4205 * "response" is NULL
4206 *
4207 * Valid errors:
4208 * SUCCESS
4209 * RADIO_NOT_AVAILABLE (radio resetting)
4210 * GENERIC_FAILURE
4211 * SUBSCRIPTION_NOT_SUPPORTED
4212 *
4213 */
4214#define RIL_REQUEST_SET_UICC_SUBSCRIPTION 122
4215
4216/**
4217 * RIL_REQUEST_ALLOW_DATA
4218 *
4219 * Tells the modem whether data calls are allowed or not
4220 *
4221 * "data" is int *
4222 * FIXME slotId and aid will be added.
4223 * ((int *)data)[0] is == 0 to allow data calls
4224 * ((int *)data)[0] is == 1 to disallow data calls
4225 *
4226 * "response" is NULL
4227 *
4228 * Valid errors:
4229 *
4230 * SUCCESS
4231 * RADIO_NOT_AVAILABLE (radio resetting)
4232 * GENERIC_FAILURE
4233 *
4234 */
4235#define RIL_REQUEST_ALLOW_DATA 123
4236
4237/**
4238 * RIL_REQUEST_GET_HARDWARE_CONFIG
4239 *
4240 * Request all of the current hardware (modem and sim) associated
4241 * with the RIL.
4242 *
4243 * "data" is NULL
4244 *
4245 * "response" is an array of RIL_HardwareConfig.
4246 */
4247#define RIL_REQUEST_GET_HARDWARE_CONFIG 124
4248
4249/**
Amit Mahajan2b772032014-06-26 14:20:11 -07004250 * RIL_REQUEST_SIM_AUTHENTICATION
Etan Cohend3652192014-06-20 08:28:44 -07004251 *
4252 * Returns the response of SIM Authentication through RIL to a
4253 * challenge request.
4254 *
4255 * "data" Base64 encoded string containing challenge:
4256 * int authContext; P2 value of authentication command, see P2 parameter in
4257 * 3GPP TS 31.102 7.1.2
4258 * char *authData; the challenge string in Base64 format, see 3GPP
4259 * TS 31.102 7.1.2
4260 * char *aid; AID value, See ETSI 102.221 8.1 and 101.220 4,
4261 * NULL if no value
4262 *
4263 * "response" Base64 encoded strings containing response:
4264 * int sw1; Status bytes per 3GPP TS 31.102 section 7.3
4265 * int sw2;
4266 * char *simResponse; Response in Base64 format, see 3GPP TS 31.102 7.1.2
4267 */
Amit Mahajan2b772032014-06-26 14:20:11 -07004268#define RIL_REQUEST_SIM_AUTHENTICATION 125
Shishir Agrawal2458d8d2013-11-27 14:53:05 -08004269
Wink Savillec29360a2014-07-13 05:17:28 -07004270/**
4271 * RIL_REQUEST_GET_DC_RT_INFO
4272 *
4273 * Requests the Data Connection Real Time Info
4274 *
4275 * "data" is NULL
4276 *
4277 * "response" is the most recent RIL_DcRtInfo
4278 *
4279 * Valid errors:
4280 * SUCCESS
4281 * RADIO_NOT_AVAILABLE
4282 * GENERIC_FAILURE
4283 *
4284 * See also: RIL_UNSOL_DC_RT_INFO_CHANGED
4285 */
4286#define RIL_REQUEST_GET_DC_RT_INFO 126
4287
4288/**
4289 * RIL_REQUEST_SET_DC_RT_INFO_RATE
4290 *
4291 * This is the minimum number of milliseconds between successive
4292 * RIL_UNSOL_DC_RT_INFO_CHANGED messages and defines the highest rate
4293 * at which RIL_UNSOL_DC_RT_INFO_CHANGED's will be sent. A value of
4294 * 0 means send as fast as possible.
4295 *
4296 * "data" The number of milliseconds as an int
4297 *
4298 * "response" is null
4299 *
4300 * Valid errors:
4301 * SUCCESS must not fail
4302 */
4303#define RIL_REQUEST_SET_DC_RT_INFO_RATE 127
4304
Amit Mahajanc796e222014-08-13 16:54:01 +00004305/**
4306 * RIL_REQUEST_SET_DATA_PROFILE
4307 *
4308 * Set data profile in modem
Hui Wang8d679622014-10-16 14:59:27 -05004309 * Modem should erase existed profiles from framework, and apply new profiles
Amit Mahajanc796e222014-08-13 16:54:01 +00004310 * "data" is an const RIL_DataProfileInfo **
4311 * "datalen" is count * sizeof(const RIL_DataProfileInfo *)
4312 * "response" is NULL
4313 *
4314 * Valid errors:
4315 * SUCCESS
4316 * RADIO_NOT_AVAILABLE (radio resetting)
4317 * GENERIC_FAILURE
4318 * SUBSCRIPTION_NOT_AVAILABLE
4319 */
4320#define RIL_REQUEST_SET_DATA_PROFILE 128
Naveen Kallaa65a16a2014-07-31 16:48:31 -07004321
4322/**
4323 * RIL_REQUEST_SHUTDOWN
4324 *
4325 * Device is shutting down. All further commands are ignored
4326 * and RADIO_NOT_AVAILABLE must be returned.
4327 *
4328 * "data" is null
4329 * "response" is NULL
4330 *
4331 * Valid errors:
4332 * SUCCESS
4333 * RADIO_NOT_AVAILABLE
4334 * GENERIC_FAILURE
4335 */
4336#define RIL_REQUEST_SHUTDOWN 129
4337
Wink Saville8b4e4f72014-10-17 15:01:45 -07004338/**
4339 * RIL_REQUEST_GET_RADIO_CAPABILITY
4340 *
4341 * Used to get phone radio capablility.
4342 *
4343 * "data" is int *
4344 * ((int *)data)[0] is the phone radio access family defined in
4345 * RadioAccessFamily. It's a bit mask value to represent the support type.
4346 *
4347 * Valid errors:
4348 * SUCCESS
4349 * RADIO_NOT_AVAILABLE
4350 * GENERIC_FAILURE
4351 */
4352#define RIL_REQUEST_GET_RADIO_CAPABILITY 130
4353
4354/**
4355 * RIL_REQUEST_SET_RADIO_CAPABILITY
4356 *
4357 * Used to set the phones radio capability. Be VERY careful
4358 * using this request as it may cause some vendor modems to reset. Because
4359 * of the possible modem reset any RIL commands after this one may not be
4360 * processed.
4361 *
4362 * "data" is the RIL_RadioCapability structure
4363 *
4364 * "response" is the RIL_RadioCapability structure, used to feedback return status
4365 *
4366 * Valid errors:
4367 * SUCCESS means a RIL_UNSOL_RADIO_CAPABILITY will be sent within 30 seconds.
4368 * RADIO_NOT_AVAILABLE
4369 * GENERIC_FAILURE
4370 */
4371#define RIL_REQUEST_SET_RADIO_CAPABILITY 131
4372
fengluf7408292015-04-14 14:53:55 -07004373/**
4374 * RIL_REQUEST_START_LCE
4375 *
4376 * Start Link Capacity Estimate (LCE) service if supported by the radio.
4377 *
4378 * "data" is const int *
4379 * ((const int*)data)[0] specifies the desired reporting interval (ms).
4380 *
4381 * "response" is the RIL_LCEStatusInfo.
4382 *
4383 * Valid errors:
4384 * SUCCESS
4385 * RADIO_NOT_AVAILABLE
4386 * LCE_NOT_SUPPORTED
4387 */
4388#define RIL_REQUEST_START_LCE 132
4389
4390/**
4391 * RIL_REQUEST_STOP_LCE
4392 *
4393 * Stop Link Capacity Estimate (LCE) service, the STOP operation should be
4394 * idempotent for the radio modem.
4395 *
4396 * "response" is the RIL_LCEStatusInfo.
4397 *
4398 * Valid errors:
4399 * SUCCESS
4400 * RADIO_NOT_AVAILABLE
4401 * LCE_NOT_SUPPORTED
4402 */
4403#define RIL_REQUEST_STOP_LCE 133
4404
4405/**
4406 * RIL_REQUEST_PULL_LCEDATA
4407 *
4408 * Pull LCE service for capacity information.
4409 *
4410 * "response" is the RIL_LCEDataInfo.
4411 *
4412 * Valid errors:
4413 * SUCCESS
4414 * RADIO_NOT_AVAILABLE
4415 * LCE_NOT_SUPPORTED
4416 */
4417#define RIL_REQUEST_PULL_LCEDATA 134
4418
Naveen Kallaa65a16a2014-07-31 16:48:31 -07004419
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004420/***********************************************************************/
4421
Wink Savillef4c4d362009-04-02 01:37:03 -07004422
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004423#define RIL_UNSOL_RESPONSE_BASE 1000
4424
4425/**
4426 * RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED
4427 *
4428 * Indicate when value of RIL_RadioState has changed.
4429 *
4430 * Callee will invoke RIL_RadioStateRequest method on main thread
4431 *
4432 * "data" is NULL
4433 */
4434
4435#define RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED 1000
4436
4437
4438/**
4439 * RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED
4440 *
4441 * Indicate when call state has changed
4442 *
4443 * Callee will invoke RIL_REQUEST_GET_CURRENT_CALLS on main thread
4444 *
4445 * "data" is NULL
4446 *
Wink Saville7f856802009-06-09 10:23:37 -07004447 * Response should be invoked on, for example,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004448 * "RING", "BUSY", "NO CARRIER", and also call state
4449 * transitions (DIALING->ALERTING ALERTING->ACTIVE)
4450 *
4451 * Redundent or extraneous invocations are tolerated
4452 */
4453#define RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED 1001
4454
4455
4456/**
Wink Savillec0114b32011-02-18 10:14:07 -08004457 * RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004458 *
Wink Savillec0114b32011-02-18 10:14:07 -08004459 * Called when the voice network state changed
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004460 *
4461 * Callee will invoke the following requests on main thread:
4462 *
Wink Savillec0114b32011-02-18 10:14:07 -08004463 * RIL_REQUEST_VOICE_REGISTRATION_STATE
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004464 * RIL_REQUEST_OPERATOR
4465 *
4466 * "data" is NULL
4467 *
4468 * FIXME should this happen when SIM records are loaded? (eg, for
4469 * EONS)
4470 */
Wink Savillec0114b32011-02-18 10:14:07 -08004471#define RIL_UNSOL_RESPONSE_VOICE_NETWORK_STATE_CHANGED 1002
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004472
4473/**
4474 * RIL_UNSOL_RESPONSE_NEW_SMS
4475 *
4476 * Called when new SMS is received.
Wink Saville7f856802009-06-09 10:23:37 -07004477 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004478 * "data" is const char *
4479 * This is a pointer to a string containing the PDU of an SMS-DELIVER
4480 * as an ascii string of hex digits. The PDU starts with the SMSC address
4481 * per TS 27.005 (+CMT:)
4482 *
4483 * Callee will subsequently confirm the receipt of thei SMS with a
4484 * RIL_REQUEST_SMS_ACKNOWLEDGE
4485 *
Wink Saville7f856802009-06-09 10:23:37 -07004486 * No new RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004487 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
4488 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
4489 */
4490
4491#define RIL_UNSOL_RESPONSE_NEW_SMS 1003
4492
4493/**
4494 * RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT
4495 *
4496 * Called when new SMS Status Report is received.
Wink Saville7f856802009-06-09 10:23:37 -07004497 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004498 * "data" is const char *
4499 * This is a pointer to a string containing the PDU of an SMS-STATUS-REPORT
4500 * as an ascii string of hex digits. The PDU starts with the SMSC address
4501 * per TS 27.005 (+CDS:).
4502 *
4503 * Callee will subsequently confirm the receipt of the SMS with a
4504 * RIL_REQUEST_SMS_ACKNOWLEDGE
4505 *
Wink Saville7f856802009-06-09 10:23:37 -07004506 * No new RIL_UNSOL_RESPONSE_NEW_SMS
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004507 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
4508 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
4509 */
4510
4511#define RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT 1004
4512
4513/**
4514 * RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM
4515 *
4516 * Called when new SMS has been stored on SIM card
Wink Saville7f856802009-06-09 10:23:37 -07004517 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004518 * "data" is const int *
4519 * ((const int *)data)[0] contains the slot index on the SIM that contains
4520 * the new message
4521 */
4522
4523#define RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM 1005
4524
4525/**
4526 * RIL_UNSOL_ON_USSD
4527 *
4528 * Called when a new USSD message is received.
4529 *
4530 * "data" is const char **
Wink Saville7f856802009-06-09 10:23:37 -07004531 * ((const char **)data)[0] points to a type code, which is
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004532 * one of these string values:
4533 * "0" USSD-Notify -- text in ((const char **)data)[1]
4534 * "1" USSD-Request -- text in ((const char **)data)[1]
4535 * "2" Session terminated by network
4536 * "3" other local client (eg, SIM Toolkit) has responded
4537 * "4" Operation not supported
4538 * "5" Network timeout
4539 *
4540 * The USSD session is assumed to persist if the type code is "1", otherwise
4541 * the current session (if any) is assumed to have terminated.
4542 *
4543 * ((const char **)data)[1] points to a message string if applicable, which
4544 * should always be in UTF-8.
4545 */
4546#define RIL_UNSOL_ON_USSD 1006
4547/* Previously #define RIL_UNSOL_ON_USSD_NOTIFY 1006 */
4548
4549/**
4550 * RIL_UNSOL_ON_USSD_REQUEST
4551 *
4552 * Obsolete. Send via RIL_UNSOL_ON_USSD
4553 */
Wink Saville7f856802009-06-09 10:23:37 -07004554#define RIL_UNSOL_ON_USSD_REQUEST 1007
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004555
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004556/**
4557 * RIL_UNSOL_NITZ_TIME_RECEIVED
4558 *
4559 * Called when radio has received a NITZ time message
4560 *
4561 * "data" is const char * pointing to NITZ time string
4562 * in the form "yy/mm/dd,hh:mm:ss(+/-)tz,dt"
4563 */
4564#define RIL_UNSOL_NITZ_TIME_RECEIVED 1008
4565
4566/**
4567 * RIL_UNSOL_SIGNAL_STRENGTH
4568 *
4569 * Radio may report signal strength rather han have it polled.
4570 *
Wink Saville1b5fd232009-04-22 14:50:00 -07004571 * "data" is a const RIL_SignalStrength *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004572 */
4573#define RIL_UNSOL_SIGNAL_STRENGTH 1009
4574
4575
4576/**
Wink Savillef4c4d362009-04-02 01:37:03 -07004577 * RIL_UNSOL_DATA_CALL_LIST_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004578 *
Wink Savillec0114b32011-02-18 10:14:07 -08004579 * "data" is an array of RIL_Data_Call_Response_v6 identical to that
Wink Saville29487ef2011-04-15 09:15:31 -07004580 * returned by RIL_REQUEST_DATA_CALL_LIST. It is the complete list
4581 * of current data contexts including new contexts that have been
4582 * activated. A data call is only removed from this list when the
4583 * framework sends a RIL_REQUEST_DEACTIVATE_DATA_CALL or the radio
4584 * is powered off/on.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004585 *
Wink Savillef4c4d362009-04-02 01:37:03 -07004586 * See also: RIL_REQUEST_DATA_CALL_LIST
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004587 */
4588
Wink Savillef4c4d362009-04-02 01:37:03 -07004589#define RIL_UNSOL_DATA_CALL_LIST_CHANGED 1010
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004590
4591/**
4592 * RIL_UNSOL_SUPP_SVC_NOTIFICATION
4593 *
4594 * Reports supplementary service related notification from the network.
4595 *
4596 * "data" is a const RIL_SuppSvcNotification *
4597 *
4598 */
4599
4600#define RIL_UNSOL_SUPP_SVC_NOTIFICATION 1011
4601
4602/**
4603 * RIL_UNSOL_STK_SESSION_END
4604 *
4605 * Indicate when STK session is terminated by SIM.
4606 *
4607 * "data" is NULL
4608 */
4609#define RIL_UNSOL_STK_SESSION_END 1012
4610
4611/**
4612 * RIL_UNSOL_STK_PROACTIVE_COMMAND
4613 *
4614 * Indicate when SIM issue a STK proactive command to applications
4615 *
4616 * "data" is a const char * containing SAT/USAT proactive command
4617 * in hexadecimal format string starting with command tag
4618 *
4619 */
4620#define RIL_UNSOL_STK_PROACTIVE_COMMAND 1013
4621
4622/**
4623 * RIL_UNSOL_STK_EVENT_NOTIFY
4624 *
4625 * Indicate when SIM notifies applcations some event happens.
4626 * Generally, application does not need to have any feedback to
4627 * SIM but shall be able to indicate appropriate messages to users.
4628 *
4629 * "data" is a const char * containing SAT/USAT commands or responses
4630 * sent by ME to SIM or commands handled by ME, in hexadecimal format string
4631 * starting with first byte of response data or command tag
4632 *
4633 */
4634#define RIL_UNSOL_STK_EVENT_NOTIFY 1014
4635
4636/**
4637 * RIL_UNSOL_STK_CALL_SETUP
4638 *
4639 * Indicate when SIM wants application to setup a voice call.
4640 *
4641 * "data" is const int *
4642 * ((const int *)data)[0] contains timeout value (in milliseconds)
4643 */
4644#define RIL_UNSOL_STK_CALL_SETUP 1015
4645
4646/**
4647 * RIL_UNSOL_SIM_SMS_STORAGE_FULL
4648 *
4649 * Indicates that SMS storage on the SIM is full. Sent when the network
4650 * attempts to deliver a new SMS message. Messages cannot be saved on the
4651 * SIM until space is freed. In particular, incoming Class 2 messages
4652 * cannot be stored.
4653 *
4654 * "data" is null
4655 *
4656 */
4657#define RIL_UNSOL_SIM_SMS_STORAGE_FULL 1016
4658
4659/**
4660 * RIL_UNSOL_SIM_REFRESH
4661 *
4662 * Indicates that file(s) on the SIM have been updated, or the SIM
4663 * has been reinitialized.
4664 *
Alex Yakavenka45e740e2012-01-31 11:48:27 -08004665 * In the case where RIL is version 6 or older:
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004666 * "data" is an int *
4667 * ((int *)data)[0] is a RIL_SimRefreshResult.
4668 * ((int *)data)[1] is the EFID of the updated file if the result is
Alex Yakavenka45e740e2012-01-31 11:48:27 -08004669 * SIM_FILE_UPDATE or NULL for any other result.
4670 *
4671 * In the case where RIL is version 7:
4672 * "data" is a RIL_SimRefreshResponse_v7 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004673 *
Naveen Kalla2bc78d62011-12-07 16:22:53 -08004674 * Note: If the SIM state changes as a result of the SIM refresh (eg,
4675 * SIM_READY -> SIM_LOCKED_OR_ABSENT), RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004676 * should be sent.
4677 */
4678#define RIL_UNSOL_SIM_REFRESH 1017
4679
4680/**
4681 * RIL_UNSOL_CALL_RING
4682 *
4683 * Ring indication for an incoming call (eg, RING or CRING event).
Wink Saville64533062009-08-28 11:16:03 -07004684 * There must be at least one RIL_UNSOL_CALL_RING at the beginning
4685 * of a call and sending multiple is optional. If the system property
4686 * ro.telephony.call_ring.multiple is false then the upper layers
4687 * will generate the multiple events internally. Otherwise the vendor
4688 * ril must generate multiple RIL_UNSOL_CALL_RING if
4689 * ro.telephony.call_ring.multiple is true or if it is absent.
4690 *
4691 * The rate of these events is controlled by ro.telephony.call_ring.delay
4692 * and has a default value of 3000 (3 seconds) if absent.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004693 *
Wink Saville3d54e742009-05-18 18:00:44 -07004694 * "data" is null for GSM
4695 * "data" is const RIL_CDMA_SignalInfoRecord * if CDMA
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08004696 */
4697#define RIL_UNSOL_CALL_RING 1018
4698
The Android Open Source Project34a51082009-03-05 14:34:37 -08004699/**
4700 * RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED
4701 *
4702 * Indicates that SIM state changes.
Wink Saville3d54e742009-05-18 18:00:44 -07004703 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004704 * Callee will invoke RIL_REQUEST_GET_SIM_STATUS on main thread
Wink Savillef4c4d362009-04-02 01:37:03 -07004705
The Android Open Source Project34a51082009-03-05 14:34:37 -08004706 * "data" is null
4707 */
4708#define RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED 1019
4709
4710/**
4711 * RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
4712 *
4713 * Called when new CDMA SMS is received
Wink Saville3d54e742009-05-18 18:00:44 -07004714 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004715 * "data" is const RIL_CDMA_SMS_Message *
Wink Saville3d54e742009-05-18 18:00:44 -07004716 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004717 * Callee will subsequently confirm the receipt of the SMS with
4718 * a RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
Wink Saville3d54e742009-05-18 18:00:44 -07004719 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004720 * No new RIL_UNSOL_RESPONSE_CDMA_NEW_SMS should be sent until
4721 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE has been received
Wink Saville3d54e742009-05-18 18:00:44 -07004722 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004723 */
4724#define RIL_UNSOL_RESPONSE_CDMA_NEW_SMS 1020
4725
4726/**
4727 * RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS
4728 *
4729 * Called when new Broadcast SMS is received
Wink Saville7f856802009-06-09 10:23:37 -07004730 *
Henrik Hall0eba2022010-11-25 10:20:56 +01004731 * "data" can be one of the following:
4732 * If received from GSM network, "data" is const char of 88 bytes
4733 * which indicates each page of a CBS Message sent to the MS by the
4734 * BTS as coded in 3GPP 23.041 Section 9.4.1.2.
4735 * If received from UMTS network, "data" is const char of 90 up to 1252
4736 * bytes which contain between 1 and 15 CBS Message pages sent as one
4737 * 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 -07004738 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004739 */
4740#define RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS 1021
Wink Savillef4c4d362009-04-02 01:37:03 -07004741
The Android Open Source Project34a51082009-03-05 14:34:37 -08004742/**
4743 * RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL
4744 *
4745 * Indicates that SMS storage on the RUIM is full. Messages
4746 * cannot be saved on the RUIM until space is freed.
4747 *
4748 * "data" is null
Wink Savillef4c4d362009-04-02 01:37:03 -07004749 *
The Android Open Source Project34a51082009-03-05 14:34:37 -08004750 */
Wink Savillef4c4d362009-04-02 01:37:03 -07004751#define RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL 1022
4752
The Android Open Source Project34a51082009-03-05 14:34:37 -08004753/**
4754 * RIL_UNSOL_RESTRICTED_STATE_CHANGED
4755 *
4756 * Indicates a restricted state change (eg, for Domain Specific Access Control).
4757 *
4758 * Radio need send this msg after radio off/on cycle no matter it is changed or not.
4759 *
4760 * "data" is an int *
4761 * ((int *)data)[0] contains a bitmask of RIL_RESTRICTED_STATE_* values.
4762 */
4763#define RIL_UNSOL_RESTRICTED_STATE_CHANGED 1023
4764
Wink Saville1b5fd232009-04-22 14:50:00 -07004765/**
4766 * RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE
4767 *
4768 * Indicates that the radio system selection module has
4769 * autonomously entered emergency callback mode.
4770 *
4771 * "data" is null
4772 *
4773 */
4774#define RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE 1024
The Android Open Source Project34a51082009-03-05 14:34:37 -08004775
Wink Saville1b5fd232009-04-22 14:50:00 -07004776/**
4777 * RIL_UNSOL_CDMA_CALL_WAITING
4778 *
4779 * Called when CDMA radio receives a call waiting indication.
4780 *
4781 * "data" is const RIL_CDMA_CallWaiting *
Wink Saville7f856802009-06-09 10:23:37 -07004782 *
Wink Saville1b5fd232009-04-22 14:50:00 -07004783 */
4784#define RIL_UNSOL_CDMA_CALL_WAITING 1025
4785
4786/**
4787 * RIL_UNSOL_CDMA_OTA_PROVISION_STATUS
4788 *
4789 * Called when CDMA radio receives an update of the progress of an
4790 * OTASP/OTAPA call.
4791 *
4792 * "data" is const int *
4793 * For CDMA this is an integer OTASP/OTAPA status listed in
4794 * RIL_CDMA_OTA_ProvisionStatus.
4795 *
4796 */
4797#define RIL_UNSOL_CDMA_OTA_PROVISION_STATUS 1026
4798
4799/**
4800 * RIL_UNSOL_CDMA_INFO_REC
4801 *
4802 * Called when CDMA radio receives one or more info recs.
4803 *
4804 * "data" is const RIL_CDMA_InformationRecords *
4805 *
4806 */
4807#define RIL_UNSOL_CDMA_INFO_REC 1027
The Android Open Source Project34a51082009-03-05 14:34:37 -08004808
Jaikumar Ganeshaf6ecbf2009-04-29 13:27:51 -07004809/**
4810 * RIL_UNSOL_OEM_HOOK_RAW
4811 *
4812 * This is for OEM specific use.
4813 *
4814 * "data" is a byte[]
4815 */
4816#define RIL_UNSOL_OEM_HOOK_RAW 1028
4817
John Wang5d621da2009-09-18 17:17:48 -07004818/**
4819 * RIL_UNSOL_RINGBACK_TONE
4820 *
4821 * Indicates that nework doesn't have in-band information, need to
4822 * play out-band tone.
4823 *
4824 * "data" is an int *
4825 * ((int *)data)[0] == 0 for stop play ringback tone.
4826 * ((int *)data)[0] == 1 for start play ringback tone.
4827 */
4828#define RIL_UNSOL_RINGBACK_TONE 1029
4829
John Wang5909cf82010-01-29 00:18:54 -08004830/**
4831 * RIL_UNSOL_RESEND_INCALL_MUTE
4832 *
4833 * Indicates that framework/application need reset the uplink mute state.
4834 *
4835 * There may be situations where the mute state becomes out of sync
4836 * between the application and device in some GSM infrastructures.
4837 *
4838 * "data" is null
4839 */
4840#define RIL_UNSOL_RESEND_INCALL_MUTE 1030
Wink Savillec0114b32011-02-18 10:14:07 -08004841
4842/**
4843 * RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED
4844 *
4845 * Called when CDMA subscription source changed.
4846 *
4847 * "data" is int *
4848 * ((int *)data)[0] is == RIL_CdmaSubscriptionSource
4849 */
Wink Saville29487ef2011-04-15 09:15:31 -07004850#define RIL_UNSOL_CDMA_SUBSCRIPTION_SOURCE_CHANGED 1031
Wink Savillec0114b32011-02-18 10:14:07 -08004851
4852/**
4853 * RIL_UNSOL_CDMA_PRL_CHANGED
4854 *
4855 * Called when PRL (preferred roaming list) changes.
4856 *
4857 * "data" is int *
4858 * ((int *)data)[0] is PRL_VERSION as would be returned by RIL_REQUEST_CDMA_SUBSCRIPTION
4859 */
4860#define RIL_UNSOL_CDMA_PRL_CHANGED 1032
4861
4862/**
4863 * RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE
4864 *
4865 * Called when Emergency Callback Mode Ends
4866 *
4867 * Indicates that the radio system selection module has
4868 * proactively exited emergency callback mode.
4869 *
4870 * "data" is NULL
4871 *
4872 */
4873#define RIL_UNSOL_EXIT_EMERGENCY_CALLBACK_MODE 1033
4874
Wink Saville5b9df332011-04-06 16:24:21 -07004875/**
4876 * RIL_UNSOL_RIL_CONNECTED
4877 *
4878 * Called the ril connects and returns the version
4879 *
4880 * "data" is int *
4881 * ((int *)data)[0] is RIL_VERSION
4882 */
4883#define RIL_UNSOL_RIL_CONNECTED 1034
4884
Naveen Kalla2bc78d62011-12-07 16:22:53 -08004885/**
4886 * RIL_UNSOL_VOICE_RADIO_TECH_CHANGED
4887 *
4888 * Indicates that voice technology has changed. Contains new radio technology
4889 * as a data in the message.
4890 *
4891 * "data" is int *
4892 * ((int *)data)[0] is of type const RIL_RadioTechnology
4893 *
4894 */
4895#define RIL_UNSOL_VOICE_RADIO_TECH_CHANGED 1035
4896
Wink Saville8a9e0212013-04-09 12:11:38 -07004897/**
4898 * RIL_UNSOL_CELL_INFO_LIST
4899 *
4900 * Same information as returned by RIL_REQUEST_GET_CELL_INFO_LIST, but returned
4901 * at the rate no greater than specified by RIL_REQUEST_SET_UNSOL_CELL_INFO_RATE.
4902 *
4903 * "data" is NULL
4904 *
4905 * "response" is an array of RIL_CellInfo.
4906 */
4907#define RIL_UNSOL_CELL_INFO_LIST 1036
Naveen Kalla2bc78d62011-12-07 16:22:53 -08004908
Wink Saville865ce3b2013-11-08 16:37:01 -08004909/**
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004910 * RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED
4911 *
4912 * Called when IMS registration state has changed
4913 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004914 * To get IMS registration state and IMS SMS format, callee needs to invoke the
4915 * following request on main thread:
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004916 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004917 * RIL_REQUEST_IMS_REGISTRATION_STATE
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004918 *
Wink Saville865ce3b2013-11-08 16:37:01 -08004919 * "data" is NULL
4920 *
Sukanya Rajkhowaa18b9d12013-09-10 12:30:13 -07004921 */
4922#define RIL_UNSOL_RESPONSE_IMS_NETWORK_STATE_CHANGED 1037
4923
Etan Cohend3652192014-06-20 08:28:44 -07004924/**
4925 * RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED
4926 *
4927 * Indicated when there is a change in subscription status.
4928 * This event will be sent in the following scenarios
4929 * - subscription readiness at modem, which was selected by telephony layer
4930 * - when subscription is deactivated by modem due to UICC card removal
4931 * - When network invalidates the subscription i.e. attach reject due to authentication reject
4932 *
4933 * "data" is const int *
4934 * ((const int *)data)[0] == 0 for Subscription Deactivated
4935 * ((const int *)data)[0] == 1 for Subscription Activated
4936 *
4937 */
4938#define RIL_UNSOL_UICC_SUBSCRIPTION_STATUS_CHANGED 1038
4939
4940/**
4941 * RIL_UNSOL_SRVCC_STATE_NOTIFY
4942 *
4943 * Called when Single Radio Voice Call Continuity(SRVCC)
4944 * progress state has changed
4945 *
4946 * "data" is int *
4947 * ((int *)data)[0] is of type const RIL_SrvccState
4948 *
4949 */
4950
4951#define RIL_UNSOL_SRVCC_STATE_NOTIFY 1039
4952
4953/**
4954 * RIL_UNSOL_HARDWARE_CONFIG_CHANGED
4955 *
4956 * Called when the hardware configuration associated with the RILd changes
4957 *
4958 * "data" is an array of RIL_HardwareConfig
4959 *
4960 */
4961#define RIL_UNSOL_HARDWARE_CONFIG_CHANGED 1040
4962
Wink Savillec29360a2014-07-13 05:17:28 -07004963/**
4964 * RIL_UNSOL_DC_RT_INFO_CHANGED
4965 *
4966 * Sent when the DC_RT_STATE changes but the time
4967 * between these messages must not be less than the
4968 * value set by RIL_REQUEST_SET_DC_RT_RATE.
4969 *
4970 * "data" is the most recent RIL_DcRtInfo
4971 *
4972 */
4973#define RIL_UNSOL_DC_RT_INFO_CHANGED 1041
4974
Wink Saville8b4e4f72014-10-17 15:01:45 -07004975/**
4976 * RIL_UNSOL_RADIO_CAPABILITY
4977 *
4978 * Sent when RIL_REQUEST_SET_RADIO_CAPABILITY completes.
4979 * Returns the phone radio capability exactly as
4980 * RIL_REQUEST_GET_RADIO_CAPABILITY and should be the
4981 * same set as sent by RIL_REQUEST_SET_RADIO_CAPABILITY.
4982 *
4983 * "data" is the RIL_RadioCapability structure
4984 */
4985#define RIL_UNSOL_RADIO_CAPABILITY 1042
4986
Amit Mahajan54563d32014-11-22 00:54:49 +00004987/*
4988 * RIL_UNSOL_ON_SS
4989 *
4990 * Called when SS response is received when DIAL/USSD/SS is changed to SS by
4991 * call control.
4992 *
4993 * "data" is const RIL_StkCcUnsolSsResponse *
4994 *
4995 */
4996#define RIL_UNSOL_ON_SS 1043
4997
4998/**
4999 * RIL_UNSOL_STK_CC_ALPHA_NOTIFY
5000 *
5001 * Called when there is an ALPHA from UICC during Call Control.
5002 *
5003 * "data" is const char * containing ALPHA string from UICC in UTF-8 format.
5004 *
5005 */
5006#define RIL_UNSOL_STK_CC_ALPHA_NOTIFY 1044
5007
fengluf7408292015-04-14 14:53:55 -07005008/**
5009 * RIL_UNSOL_LCEDATA_RECV
5010 *
5011 * Called when there is an incoming Link Capacity Estimate (LCE) info report.
5012 *
5013 * "data" is the RIL_LCEDataInfo structure.
5014 *
5015 */
5016#define RIL_UNSOL_LCEDATA_RECV 1045
5017
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005018/***********************************************************************/
5019
Amit Mahajan54563d32014-11-22 00:54:49 +00005020
Etan Cohend3652192014-06-20 08:28:44 -07005021#if defined(ANDROID_MULTI_SIM)
5022/**
5023 * RIL_Request Function pointer
5024 *
5025 * @param request is one of RIL_REQUEST_*
5026 * @param data is pointer to data defined for that RIL_REQUEST_*
5027 * data is owned by caller, and should not be modified or freed by callee
5028 * @param t should be used in subsequent call to RIL_onResponse
5029 * @param datalen the length of data
5030 *
5031 */
5032typedef void (*RIL_RequestFunc) (int request, void *data,
5033 size_t datalen, RIL_Token t, RIL_SOCKET_ID socket_id);
5034
5035/**
5036 * This function should return the current radio state synchronously
5037 */
5038typedef RIL_RadioState (*RIL_RadioStateRequest)(RIL_SOCKET_ID socket_id);
5039
5040#else
5041/* Backward compatible */
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005042
5043/**
5044 * RIL_Request Function pointer
5045 *
5046 * @param request is one of RIL_REQUEST_*
5047 * @param data is pointer to data defined for that RIL_REQUEST_*
5048 * data is owned by caller, and should not be modified or freed by callee
5049 * @param t should be used in subsequent call to RIL_onResponse
5050 * @param datalen the length of data
5051 *
5052 */
Wink Saville7f856802009-06-09 10:23:37 -07005053typedef void (*RIL_RequestFunc) (int request, void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005054 size_t datalen, RIL_Token t);
5055
5056/**
5057 * This function should return the current radio state synchronously
5058 */
5059typedef RIL_RadioState (*RIL_RadioStateRequest)();
5060
Etan Cohend3652192014-06-20 08:28:44 -07005061#endif
5062
5063
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005064/**
5065 * This function returns "1" if the specified RIL_REQUEST code is
5066 * supported and 0 if it is not
5067 *
5068 * @param requestCode is one of RIL_REQUEST codes
5069 */
5070
5071typedef int (*RIL_Supports)(int requestCode);
5072
5073/**
Wink Saville7f856802009-06-09 10:23:37 -07005074 * This function is called from a separate thread--not the
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005075 * thread that calls RIL_RequestFunc--and indicates that a pending
5076 * request should be cancelled.
Wink Saville7f856802009-06-09 10:23:37 -07005077 *
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005078 * On cancel, the callee should do its best to abandon the request and
5079 * call RIL_onRequestComplete with RIL_Errno CANCELLED at some later point.
5080 *
5081 * Subsequent calls to RIL_onRequestComplete for this request with
5082 * other results will be tolerated but ignored. (That is, it is valid
5083 * to ignore the cancellation request)
5084 *
5085 * RIL_Cancel calls should return immediately, and not wait for cancellation
5086 *
Wink Saville7f856802009-06-09 10:23:37 -07005087 * 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 -08005088 * interface
5089 *
5090 * @param t token wants to be canceled
5091 */
5092
5093typedef void (*RIL_Cancel)(RIL_Token t);
5094
5095typedef void (*RIL_TimedCallback) (void *param);
5096
5097/**
5098 * Return a version string for your RIL implementation
5099 */
5100typedef const char * (*RIL_GetVersion) (void);
5101
5102typedef struct {
5103 int version; /* set to RIL_VERSION */
5104 RIL_RequestFunc onRequest;
5105 RIL_RadioStateRequest onStateRequest;
5106 RIL_Supports supports;
5107 RIL_Cancel onCancel;
5108 RIL_GetVersion getVersion;
5109} RIL_RadioFunctions;
5110
Sungmin Choi75697532013-04-26 15:04:45 -07005111typedef struct {
5112 char *apn;
5113 char *protocol;
5114 int authtype;
5115 char *username;
5116 char *password;
5117} RIL_InitialAttachApn;
5118
Amit Mahajan2b772032014-06-26 14:20:11 -07005119typedef struct {
5120 int authContext; /* P2 value of authentication command, see P2 parameter in
5121 3GPP TS 31.102 7.1.2 */
5122 char *authData; /* the challenge string in Base64 format, see 3GPP
5123 TS 31.102 7.1.2 */
5124 char *aid; /* AID value, See ETSI 102.221 8.1 and 101.220 4,
5125 NULL if no value. */
5126} RIL_SimAuthentication;
5127
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005128#ifdef RIL_SHLIB
5129struct RIL_Env {
5130 /**
5131 * "t" is parameter passed in on previous call to RIL_Notification
5132 * routine.
5133 *
5134 * If "e" != SUCCESS, then response can be null/is ignored
5135 *
Wink Saville7f856802009-06-09 10:23:37 -07005136 * "response" is owned by caller, and should not be modified or
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005137 * freed by callee
5138 *
5139 * RIL_onRequestComplete will return as soon as possible
5140 */
Wink Saville7f856802009-06-09 10:23:37 -07005141 void (*OnRequestComplete)(RIL_Token t, RIL_Errno e,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005142 void *response, size_t responselen);
5143
Etan Cohend3652192014-06-20 08:28:44 -07005144#if defined(ANDROID_MULTI_SIM)
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005145 /**
5146 * "unsolResponse" is one of RIL_UNSOL_RESPONSE_*
5147 * "data" is pointer to data defined for that RIL_UNSOL_RESPONSE_*
5148 *
5149 * "data" is owned by caller, and should not be modified or freed by callee
5150 */
Etan Cohend3652192014-06-20 08:28:44 -07005151 void (*OnUnsolicitedResponse)(int unsolResponse, const void *data, size_t datalen, RIL_SOCKET_ID socket_id);
5152#else
5153 /**
5154 * "unsolResponse" is one of RIL_UNSOL_RESPONSE_*
5155 * "data" is pointer to data defined for that RIL_UNSOL_RESPONSE_*
5156 *
5157 * "data" is owned by caller, and should not be modified or freed by callee
5158 */
5159 void (*OnUnsolicitedResponse)(int unsolResponse, const void *data, size_t datalen);
5160#endif
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005161 /**
Wink Saville7f856802009-06-09 10:23:37 -07005162 * Call user-specifed "callback" function on on the same thread that
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005163 * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
5164 * a relative time value at which the callback is invoked. If relativeTime is
5165 * NULL or points to a 0-filled structure, the callback will be invoked as
5166 * soon as possible
5167 */
5168
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07005169 void (*RequestTimedCallback) (RIL_TimedCallback callback,
Wink Saville7f856802009-06-09 10:23:37 -07005170 void *param, const struct timeval *relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005171};
5172
5173
Wink Saville7f856802009-06-09 10:23:37 -07005174/**
5175 * RIL implementations must defined RIL_Init
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005176 * argc and argv will be command line arguments intended for the RIL implementation
5177 * Return NULL on error
5178 *
5179 * @param env is environment point defined as RIL_Env
5180 * @param argc number of arguments
5181 * @param argv list fo arguments
5182 *
5183 */
5184const RIL_RadioFunctions *RIL_Init(const struct RIL_Env *env, int argc, char **argv);
5185
5186#else /* RIL_SHLIB */
5187
5188/**
5189 * Call this once at startup to register notification routine
5190 *
5191 * @param callbacks user-specifed callback function
5192 */
5193void RIL_register (const RIL_RadioFunctions *callbacks);
5194
5195
5196/**
5197 *
5198 * RIL_onRequestComplete will return as soon as possible
5199 *
5200 * @param t is parameter passed in on previous call to RIL_Notification
Wink Saville3d54e742009-05-18 18:00:44 -07005201 * routine.
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005202 * @param e error code
5203 * if "e" != SUCCESS, then response can be null/is ignored
5204 * @param response is owned by caller, and should not be modified or
5205 * freed by callee
5206 * @param responselen the length of response in byte
5207 */
Wink Saville7f856802009-06-09 10:23:37 -07005208void RIL_onRequestComplete(RIL_Token t, RIL_Errno e,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005209 void *response, size_t responselen);
5210
Etan Cohend3652192014-06-20 08:28:44 -07005211#if defined(ANDROID_MULTI_SIM)
5212/**
5213 * @param unsolResponse is one of RIL_UNSOL_RESPONSE_*
5214 * @param data is pointer to data defined for that RIL_UNSOL_RESPONSE_*
5215 * "data" is owned by caller, and should not be modified or freed by callee
5216 * @param datalen the length of data in byte
5217 */
5218
5219void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
5220 size_t datalen, RIL_SOCKET_ID socket_id);
5221#else
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005222/**
5223 * @param unsolResponse is one of RIL_UNSOL_RESPONSE_*
5224 * @param data is pointer to data defined for that RIL_UNSOL_RESPONSE_*
5225 * "data" is owned by caller, and should not be modified or freed by callee
5226 * @param datalen the length of data in byte
5227 */
5228
Wink Saville7f856802009-06-09 10:23:37 -07005229void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005230 size_t datalen);
Etan Cohend3652192014-06-20 08:28:44 -07005231#endif
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005232
5233/**
Wink Saville7f856802009-06-09 10:23:37 -07005234 * Call user-specifed "callback" function on on the same thread that
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005235 * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
5236 * a relative time value at which the callback is invoked. If relativeTime is
5237 * NULL or points to a 0-filled structure, the callback will be invoked as
5238 * soon as possible
5239 *
5240 * @param callback user-specifed callback function
5241 * @param param parameter list
5242 * @param relativeTime a relative time value at which the callback is invoked
5243 */
5244
Dianne Hackborn0d9f0c02010-06-25 16:50:46 -07005245void RIL_requestTimedCallback (RIL_TimedCallback callback,
5246 void *param, const struct timeval *relativeTime);
The Android Open Source Project00f06fc2009-03-03 19:32:15 -08005247
5248
5249#endif /* RIL_SHLIB */
5250
5251#ifdef __cplusplus
5252}
5253#endif
5254
5255#endif /*ANDROID_RIL_H*/