ril.h revision 7f8ded1d8a337b6860dd7329b8a1be0ade4ea290
1/*
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
17 /* ISSUES:
18 * - SMS retransmit (specifying TP-Message-ID)
19 *
20 */
21
22/**
23 * TODO
24 *
25 * Supp Service Notification (+CSSN)
26 * GPRS PDP context deactivate notification
27 *
28 */
29
30
31#ifndef ANDROID_RIL_H
32#define ANDROID_RIL_H 1
33
34#include <stdlib.h>
35#ifndef FEATURE_UNIT_TEST
36#include <sys/time.h>
37#endif /* !FEATURE_UNIT_TEST */
38
39#ifdef __cplusplus
40extern "C" {
41#endif
42
43#define RIL_VERSION 2
44
45#define CDMA_ALPHA_INFO_BUFFER_LENGTH 64
46#define CDMA_NUMBER_INFO_BUFFER_LENGTH 81
47
48typedef void * RIL_Token;
49
50typedef enum {
51    RIL_E_SUCCESS = 0,
52    RIL_E_RADIO_NOT_AVAILABLE = 1,     /* If radio did not start or is resetting */
53    RIL_E_GENERIC_FAILURE = 2,
54    RIL_E_PASSWORD_INCORRECT = 3,      /* for PIN/PIN2 methods only! */
55    RIL_E_SIM_PIN2 = 4,                /* Operation requires SIM PIN2 to be entered */
56    RIL_E_SIM_PUK2 = 5,                /* Operation requires SIM PIN2 to be entered */
57    RIL_E_REQUEST_NOT_SUPPORTED = 6,
58    RIL_E_CANCELLED = 7,
59    RIL_E_OP_NOT_ALLOWED_DURING_VOICE_CALL = 8, /* data ops are not allowed during voice
60                                                   call on a Class C GPRS device */
61    RIL_E_OP_NOT_ALLOWED_BEFORE_REG_TO_NW = 9,  /* data ops are not allowed before device
62                                                   registers in network */
63    RIL_E_SMS_SEND_FAIL_RETRY = 10,             /* fail to send sms and need retry */
64    RIL_E_SIM_ABSENT = 11,                      /* fail to set the location where CDMA subscription
65                                                   shall be retrieved because of SIM or RUIM
66                                                   card absent */
67    RIL_E_SUBSCRIPTION_NOT_AVAILABLE = 12,      /* fail to find CDMA subscription from specified
68                                                   location */
69    RIL_E_MODE_NOT_SUPPORTED = 13,              /* HW does not support preferred network type */
70    RIL_E_FDN_CHECK_FAILURE = 14                /* command failed because recipient is not on FDN list */
71} RIL_Errno;
72
73typedef enum {
74    RIL_CALL_ACTIVE = 0,
75    RIL_CALL_HOLDING = 1,
76    RIL_CALL_DIALING = 2,    /* MO call only */
77    RIL_CALL_ALERTING = 3,   /* MO call only */
78    RIL_CALL_INCOMING = 4,   /* MT call only */
79    RIL_CALL_WAITING = 5     /* MT call only */
80} RIL_CallState;
81
82typedef enum {
83    RADIO_STATE_OFF = 0,                   /* Radio explictly powered off (eg CFUN=0) */
84    RADIO_STATE_UNAVAILABLE = 1,           /* Radio unavailable (eg, resetting or not booted) */
85    RADIO_STATE_SIM_NOT_READY = 2,         /* Radio is on, but the SIM interface is not ready */
86    RADIO_STATE_SIM_LOCKED_OR_ABSENT = 3,  /* SIM PIN locked, PUK required, network
87                                              personalization locked, or SIM absent */
88    RADIO_STATE_SIM_READY = 4,             /* Radio is on and SIM interface is available */
89    RADIO_STATE_RUIM_NOT_READY = 5,        /* Radio is on, but the RUIM interface is not ready */
90    RADIO_STATE_RUIM_READY = 6,            /* Radio is on and the RUIM interface is available */
91    RADIO_STATE_RUIM_LOCKED_OR_ABSENT = 7, /* RUIM PIN locked, PUK required, network
92                                              personalization locked, or RUIM absent */
93    RADIO_STATE_NV_NOT_READY = 8,          /* Radio is on, but the NV interface is not available */
94    RADIO_STATE_NV_READY = 9               /* Radio is on and the NV interface is available */
95} RIL_RadioState;
96
97 /* CDMA Signal Information Record as defined in C.S0005 section 3.7.5.5 */
98typedef struct {
99  char isPresent;    /* non-zero if signal information record is present */
100  char signalType;   /* as defined 3.7.5.5-1 */
101  char alertPitch;   /* as defined 3.7.5.5-2 */
102  char signal;       /* as defined 3.7.5.5-3, 3.7.5.5-4 or 3.7.5.5-5 */
103} RIL_CDMA_SignalInfoRecord;
104
105typedef struct {
106    RIL_CallState   state;
107    int             index;      /* Connection Index for use with, eg, AT+CHLD */
108    int             toa;        /* type of address, eg 145 = intl */
109    char            isMpty;     /* nonzero if is mpty call */
110    char            isMT;       /* nonzero if call is mobile terminated */
111    char            als;        /* ALS line indicator if available
112                                   (0 = line 1) */
113    char            isVoice;    /* nonzero if this is is a voice call */
114    char            isVoicePrivacy;     /* nonzero if CDMA voice privacy mode is active */
115    char *          number;     /* Remote party number */
116    int             numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
117    char *          name;       /* Remote party name */
118    int             namePresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown 3=Payphone */
119} RIL_Call;
120
121typedef struct {
122    int             cid;        /* Context ID */
123    int             active;     /* 0=inactive, 1=active/physical link down, 2=active/physical link up */
124    char *          type;       /* X.25, IP, IPV6, etc. */
125    char *          apn;
126    char *          address;
127} RIL_Data_Call_Response;
128
129typedef struct {
130    int messageRef;   /* TP-Message-Reference for GSM,
131                         and BearerData MessageId for CDMA
132                         (See 3GPP2 C.S0015-B, v2.0, table 4.5-1). */
133    char *ackPDU;     /* or NULL if n/a */
134    int errorCode;    /* See 3GPP 27.005, 3.2.5 for GSM/UMTS,
135                         3GPP2 N.S0005 (IS-41C) Table 171 for CDMA,
136                         -1 if unknown or not applicable*/
137} RIL_SMS_Response;
138
139/** Used by RIL_REQUEST_WRITE_SMS_TO_SIM */
140typedef struct {
141    int status;     /* Status of message.  See TS 27.005 3.1, "<stat>": */
142                    /*      0 = "REC UNREAD"    */
143                    /*      1 = "REC READ"      */
144                    /*      2 = "STO UNSENT"    */
145                    /*      3 = "STO SENT"      */
146    char * pdu;     /* PDU of message to write, as an ASCII hex string less the SMSC address,
147                       the TP-layer length is "strlen(pdu)/2". */
148    char * smsc;    /* SMSC address in GSM BCD format prefixed by a length byte
149                       (as expected by TS 27.005) or NULL for default SMSC */
150} RIL_SMS_WriteArgs;
151
152/** Used by RIL_REQUEST_DIAL */
153typedef struct {
154    char * address;
155    int clir;
156            /* (same as 'n' paremeter in TS 27.007 7.7 "+CLIR"
157             * clir == 0 on "use subscription default value"
158             * clir == 1 on "CLIR invocation" (restrict CLI presentation)
159             * clir == 2 on "CLIR suppression" (allow CLI presentation)
160             */
161} RIL_Dial;
162
163typedef struct {
164    int command;    /* one of the commands listed for TS 27.007 +CRSM*/
165    int fileid;     /* EF id */
166    char *path;     /* "pathid" from TS 27.007 +CRSM command.
167                       Path is in hex asciii format eg "7f205f70"
168                       Path must always be provided.
169                     */
170    int p1;
171    int p2;
172    int p3;
173    char *data;     /* May be NULL*/
174    char *pin2;     /* May be NULL*/
175} RIL_SIM_IO;
176
177typedef struct {
178    int sw1;
179    int sw2;
180    char *simResponse;  /* In hex string format ([a-fA-F0-9]*). */
181} RIL_SIM_IO_Response;
182
183/* See also com.android.internal.telephony.gsm.CallForwardInfo */
184
185typedef struct {
186    int             status;     /*
187                                 * For RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
188                                 * status 1 = active, 0 = not active
189                                 *
190                                 * For RIL_REQUEST_SET_CALL_FORWARD:
191                                 * status is:
192                                 * 0 = disable
193                                 * 1 = enable
194                                 * 2 = interrogate
195                                 * 3 = registeration
196                                 * 4 = erasure
197                                 */
198
199    int             reason;      /* from TS 27.007 7.11 "reason" */
200    int             serviceClass;/* From 27.007 +CCFC/+CLCK "class"
201                                    See table for Android mapping from
202                                    MMI service code
203                                    0 means user doesn't input class */
204    int             toa;         /* "type" from TS 27.007 7.11 */
205    char *          number;      /* "number" from TS 27.007 7.11. May be NULL */
206    int             timeSeconds; /* for CF no reply only */
207}RIL_CallForwardInfo;
208
209typedef struct {
210   char * cid;         /* Combination of LAC and Cell Id in 32 bits in GSM.
211                        * Upper 16 bits is LAC and lower 16 bits
212                        * is CID (as described in TS 27.005)
213                        * Primary Scrambling Code (as described in TS 25.331)
214                        *         in 9 bits in UMTS
215                        * Valid values are hexadecimal 0x0000 - 0xffffffff.
216                        */
217   int    rssi;        /* Received RSSI in GSM,
218                        * Level index of CPICH Received Signal Code Power in UMTS
219                        */
220} RIL_NeighboringCell;
221
222/* See RIL_REQUEST_LAST_CALL_FAIL_CAUSE */
223typedef enum {
224    CALL_FAIL_NORMAL = 16,
225    CALL_FAIL_BUSY = 17,
226    CALL_FAIL_CONGESTION = 34,
227    CALL_FAIL_ACM_LIMIT_EXCEEDED = 68,
228    CALL_FAIL_CALL_BARRED = 240,
229    CALL_FAIL_FDN_BLOCKED = 241,
230    CALL_FAIL_IMSI_UNKNOWN_IN_VLR = 242,
231    CALL_FAIL_IMEI_NOT_ACCEPTED = 243,
232    CALL_FAIL_CDMA_LOCKED_UNTIL_POWER_CYCLE = 1000,
233    CALL_FAIL_CDMA_DROP = 1001,
234    CALL_FAIL_CDMA_INTERCEPT = 1002,
235    CALL_FAIL_CDMA_REORDER = 1003,
236    CALL_FAIL_CDMA_SO_REJECT = 1004,
237    CALL_FAIL_CDMA_RETRY_ORDER = 1005,
238    CALL_FAIL_CDMA_ACCESS_FAILURE = 1006,
239    CALL_FAIL_CDMA_PREEMPTED = 1007,
240    CALL_FAIL_CDMA_NOT_EMERGENCY = 1008, /* For non-emergency number dialed
241                                            during emergency callback mode */
242    CALL_FAIL_CDMA_ACCESS_BLOCKED = 1009, /* CDMA network access probes blocked */
243    CALL_FAIL_ERROR_UNSPECIFIED = 0xffff
244} RIL_LastCallFailCause;
245
246/* See RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE */
247typedef enum {
248    PDP_FAIL_OPERATOR_BARRED = 0x08,               /* no retry */
249    PDP_FAIL_INSUFFICIENT_RESOURCES = 0x1A,
250    PDP_FAIL_MISSING_UKNOWN_APN = 0x1B,            /* no retry */
251    PDP_FAIL_UNKNOWN_PDP_ADDRESS_TYPE = 0x1C,      /* no retry */
252    PDP_FAIL_USER_AUTHENTICATION = 0x1D,           /* no retry */
253    PDP_FAIL_ACTIVATION_REJECT_GGSN = 0x1E,        /* no retry */
254    PDP_FAIL_ACTIVATION_REJECT_UNSPECIFIED = 0x1F,
255    PDP_FAIL_SERVICE_OPTION_NOT_SUPPORTED = 0x20,  /* no retry */
256    PDP_FAIL_SERVICE_OPTION_NOT_SUBSCRIBED = 0x21, /* no retry */
257    PDP_FAIL_SERVICE_OPTION_OUT_OF_ORDER = 0x22,
258    PDP_FAIL_NSAPI_IN_USE      = 0x23,             /* no retry */
259    PDP_FAIL_PROTOCOL_ERRORS   = 0x6F,             /* no retry */
260    PDP_FAIL_ERROR_UNSPECIFIED = 0xffff,  /* This and all other cases: retry silently */
261    /* Not mentioned in the specification */
262    PDP_FAIL_REGISTRATION_FAIL = -1,
263    PDP_FAIL_GPRS_REGISTRATION_FAIL = -2,
264} RIL_LastDataCallActivateFailCause;
265
266/* See RIL_REQUEST_SETUP_DATA_CALL */
267typedef enum {
268    RIL_DATA_PROFILE_DEFAULT    = 0,
269    RIL_DATA_PROFILE_TETHERED   = 1,
270    RIL_DATA_PROFILE_OEM_BASE   = 1000    /* Start of OEM-specific profiles */
271} RIL_DataProfile;
272
273/* Used by RIL_UNSOL_SUPP_SVC_NOTIFICATION */
274typedef struct {
275    int     notificationType;   /*
276                                 * 0 = MO intermediate result code
277                                 * 1 = MT unsolicited result code
278                                 */
279    int     code;               /* See 27.007 7.17
280                                   "code1" for MO
281                                   "code2" for MT. */
282    int     index;              /* CUG index. See 27.007 7.17. */
283    int     type;               /* "type" from 27.007 7.17 (MT only). */
284    char *  number;             /* "number" from 27.007 7.17
285                                   (MT only, may be NULL). */
286} RIL_SuppSvcNotification;
287
288#define RIL_CARD_MAX_APPS     8
289
290typedef enum {
291    RIL_CARDSTATE_ABSENT   = 0,
292    RIL_CARDSTATE_PRESENT  = 1,
293    RIL_CARDSTATE_ERROR    = 2
294} RIL_CardState;
295
296typedef enum {
297    RIL_PERSOSUBSTATE_UNKNOWN                   = 0, /* initial state */
298    RIL_PERSOSUBSTATE_IN_PROGRESS               = 1, /* in between each lock transition */
299    RIL_PERSOSUBSTATE_READY                     = 2, /* when either SIM or RUIM Perso is finished
300                                                        since each app can only have 1 active perso
301                                                        involved */
302    RIL_PERSOSUBSTATE_SIM_NETWORK               = 3,
303    RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET        = 4,
304    RIL_PERSOSUBSTATE_SIM_CORPORATE             = 5,
305    RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER      = 6,
306    RIL_PERSOSUBSTATE_SIM_SIM                   = 7,
307    RIL_PERSOSUBSTATE_SIM_NETWORK_PUK           = 8, /* The corresponding perso lock is blocked */
308    RIL_PERSOSUBSTATE_SIM_NETWORK_SUBSET_PUK    = 9,
309    RIL_PERSOSUBSTATE_SIM_CORPORATE_PUK         = 10,
310    RIL_PERSOSUBSTATE_SIM_SERVICE_PROVIDER_PUK  = 11,
311    RIL_PERSOSUBSTATE_SIM_SIM_PUK               = 12,
312    RIL_PERSOSUBSTATE_RUIM_NETWORK1             = 13,
313    RIL_PERSOSUBSTATE_RUIM_NETWORK2             = 14,
314    RIL_PERSOSUBSTATE_RUIM_HRPD                 = 15,
315    RIL_PERSOSUBSTATE_RUIM_CORPORATE            = 16,
316    RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER     = 17,
317    RIL_PERSOSUBSTATE_RUIM_RUIM                 = 18,
318    RIL_PERSOSUBSTATE_RUIM_NETWORK1_PUK         = 19, /* The corresponding perso lock is blocked */
319    RIL_PERSOSUBSTATE_RUIM_NETWORK2_PUK         = 20,
320    RIL_PERSOSUBSTATE_RUIM_HRPD_PUK             = 21,
321    RIL_PERSOSUBSTATE_RUIM_CORPORATE_PUK        = 22,
322    RIL_PERSOSUBSTATE_RUIM_SERVICE_PROVIDER_PUK = 23,
323    RIL_PERSOSUBSTATE_RUIM_RUIM_PUK             = 24
324} RIL_PersoSubstate;
325
326typedef enum {
327    RIL_APPSTATE_UNKNOWN               = 0,
328    RIL_APPSTATE_DETECTED              = 1,
329    RIL_APPSTATE_PIN                   = 2, /* If PIN1 or UPin is required */
330    RIL_APPSTATE_PUK                   = 3, /* If PUK1 or Puk for UPin is required */
331    RIL_APPSTATE_SUBSCRIPTION_PERSO    = 4, /* perso_substate should be look at
332                                               when app_state is assigned to this value */
333    RIL_APPSTATE_READY                 = 5
334} RIL_AppState;
335
336typedef enum {
337    RIL_PINSTATE_UNKNOWN              = 0,
338    RIL_PINSTATE_ENABLED_NOT_VERIFIED = 1,
339    RIL_PINSTATE_ENABLED_VERIFIED     = 2,
340    RIL_PINSTATE_DISABLED             = 3,
341    RIL_PINSTATE_ENABLED_BLOCKED      = 4,
342    RIL_PINSTATE_ENABLED_PERM_BLOCKED = 5
343} RIL_PinState;
344
345typedef enum {
346  RIL_APPTYPE_UNKNOWN = 0,
347  RIL_APPTYPE_SIM     = 1,
348  RIL_APPTYPE_USIM    = 2,
349  RIL_APPTYPE_RUIM    = 3,
350  RIL_APPTYPE_CSIM    = 4
351} RIL_AppType;
352
353typedef struct
354{
355  RIL_AppType      app_type;
356  RIL_AppState     app_state;
357  RIL_PersoSubstate perso_substate; /* applicable only if app_state ==
358                                       RIL_APPSTATE_SUBSCRIPTION_PERSO */
359  char             *aid_ptr;        /* null terminated string, e.g., from 0xA0, 0x00 -> 0x41,
360                                       0x30, 0x30, 0x30 */
361  char             *app_label_ptr;  /* null terminated string */
362  int              pin1_replaced;   /* applicable to USIM and CSIM */
363  RIL_PinState     pin1;
364  RIL_PinState     pin2;
365} RIL_AppStatus;
366
367typedef struct
368{
369  RIL_CardState card_state;
370  RIL_PinState  universal_pin_state;             /* applicable to USIM and CSIM: RIL_PINSTATE_xxx */
371  int           gsm_umts_subscription_app_index; /* value < RIL_CARD_MAX_APPS */
372  int           cdma_subscription_app_index;     /* value < RIL_CARD_MAX_APPS */
373  int           num_applications;                /* value <= RIL_CARD_MAX_APPS */
374  RIL_AppStatus applications[RIL_CARD_MAX_APPS];
375} RIL_CardStatus;
376
377/* The result of a SIM refresh, returned in data[0] of RIL_UNSOL_SIM_REFRESH */
378typedef enum {
379    /* A file on SIM has been updated.  data[1] contains the EFID. */
380    SIM_FILE_UPDATE = 0,
381    /* SIM initialized.  All files should be re-read. */
382    SIM_INIT = 1,
383    /* SIM reset.  SIM power required, SIM may be locked and all files should be re-read. */
384    SIM_RESET = 2
385} RIL_SimRefreshResult;
386
387typedef struct {
388    char *          number;             /* Remote party number */
389    int             numberPresentation; /* 0=Allowed, 1=Restricted, 2=Not Specified/Unknown */
390    char *          name;               /* Remote party name */
391    RIL_CDMA_SignalInfoRecord signalInfoRecord;
392} RIL_CDMA_CallWaiting;
393
394/**
395 * Which types of Cell Broadcast Message (CBM) are to be received by the ME
396 *
397 * uFromServiceID - uToServiceID defines a range of CBM message identifiers
398 * whose value is 0x0000 - 0xFFFF as defined in TS 23.041 9.4.1.2.2 for GMS
399 * and 9.4.4.2.2 for UMTS. All other values can be treated as empty
400 * CBM message ID.
401 *
402 * uFromCodeScheme - uToCodeScheme defines a range of CBM data coding schemes
403 * whose value is 0x00 - 0xFF as defined in TS 23.041 9.4.1.2.3 for GMS
404 * and 9.4.4.2.3 for UMTS.
405 * All other values can be treated as empty CBM data coding scheme.
406 *
407 * selected 0 means message types specified in <fromServiceId, toServiceId>
408 * and <fromCodeScheme, toCodeScheme>are not accepted, while 1 means accepted.
409 *
410 * Used by RIL_REQUEST_GSM_GET_BROADCAST_CONFIG and
411 * RIL_REQUEST_GSM_SET_BROADCAST_CONFIG.
412 */
413typedef struct {
414    int fromServiceId;
415    int toServiceId;
416    int fromCodeScheme;
417    int toCodeScheme;
418    unsigned char selected;
419} RIL_GSM_BroadcastSmsConfigInfo;
420
421/* No restriction at all including voice/SMS/USSD/SS/AV64 and packet data. */
422#define RIL_RESTRICTED_STATE_NONE           0x00
423/* Block emergency call due to restriction. But allow all normal voice/SMS/USSD/SS/AV64. */
424#define RIL_RESTRICTED_STATE_CS_EMERGENCY   0x01
425/* Block all normal voice/SMS/USSD/SS/AV64 due to restriction. Only Emergency call allowed. */
426#define RIL_RESTRICTED_STATE_CS_NORMAL      0x02
427/* Block all voice/SMS/USSD/SS/AV64 including emergency call due to restriction.*/
428#define RIL_RESTRICTED_STATE_CS_ALL         0x04
429/* Block packet data access due to restriction. */
430#define RIL_RESTRICTED_STATE_PS_ALL         0x10
431
432/* The status for an OTASP/OTAPA session */
433typedef enum {
434    CDMA_OTA_PROVISION_STATUS_SPL_UNLOCKED,
435    CDMA_OTA_PROVISION_STATUS_SPC_RETRIES_EXCEEDED,
436    CDMA_OTA_PROVISION_STATUS_A_KEY_EXCHANGED,
437    CDMA_OTA_PROVISION_STATUS_SSD_UPDATED,
438    CDMA_OTA_PROVISION_STATUS_NAM_DOWNLOADED,
439    CDMA_OTA_PROVISION_STATUS_MDN_DOWNLOADED,
440    CDMA_OTA_PROVISION_STATUS_IMSI_DOWNLOADED,
441    CDMA_OTA_PROVISION_STATUS_PRL_DOWNLOADED,
442    CDMA_OTA_PROVISION_STATUS_COMMITTED,
443    CDMA_OTA_PROVISION_STATUS_OTAPA_STARTED,
444    CDMA_OTA_PROVISION_STATUS_OTAPA_STOPPED,
445    CDMA_OTA_PROVISION_STATUS_OTAPA_ABORTED
446} RIL_CDMA_OTA_ProvisionStatus;
447
448typedef struct {
449    int signalStrength;  /* Valid values are (0-31, 99) as defined in TS 27.007 8.5 */
450    int bitErrorRate;    /* bit error rate (0-7, 99) as defined in TS 27.007 8.5 */
451} RIL_GW_SignalStrength;
452
453
454typedef struct {
455    int dbm;  /* Valid values are positive integers.  This value is the actual RSSI value
456               * multiplied by -1.  Example: If the actual RSSI is -75, then this response
457               * value will be 75.
458               */
459    int ecio; /* Valid values are positive integers.  This value is the actual Ec/Io multiplied
460               * by -10.  Example: If the actual Ec/Io is -12.5 dB, then this response value
461               * will be 125.
462               */
463} RIL_CDMA_SignalStrength;
464
465
466typedef struct {
467    int dbm;  /* Valid values are positive integers.  This value is the actual RSSI value
468               * multiplied by -1.  Example: If the actual RSSI is -75, then this response
469               * value will be 75.
470               */
471    int ecio; /* Valid values are positive integers.  This value is the actual Ec/Io multiplied
472               * by -10.  Example: If the actual Ec/Io is -12.5 dB, then this response value
473               * will be 125.
474               */
475    int signalNoiseRatio; /* Valid values are 0-8.  8 is the highest signal to noise ratio. */
476} RIL_EVDO_SignalStrength;
477
478
479typedef struct {
480    RIL_GW_SignalStrength   GW_SignalStrength;
481    RIL_CDMA_SignalStrength CDMA_SignalStrength;
482    RIL_EVDO_SignalStrength EVDO_SignalStrength;
483} RIL_SignalStrength;
484
485/* Names of the CDMA info records (C.S0005 section 3.7.5) */
486typedef enum {
487  RIL_CDMA_DISPLAY_INFO_REC,
488  RIL_CDMA_CALLED_PARTY_NUMBER_INFO_REC,
489  RIL_CDMA_CALLING_PARTY_NUMBER_INFO_REC,
490  RIL_CDMA_CONNECTED_NUMBER_INFO_REC,
491  RIL_CDMA_SIGNAL_INFO_REC,
492  RIL_CDMA_REDIRECTING_NUMBER_INFO_REC,
493  RIL_CDMA_LINE_CONTROL_INFO_REC,
494  RIL_CDMA_EXTENDED_DISPLAY_INFO_REC,
495  RIL_CDMA_T53_CLIR_INFO_REC,
496  RIL_CDMA_T53_RELEASE_INFO_REC,
497  RIL_CDMA_T53_AUDIO_CONTROL_INFO_REC
498} RIL_CDMA_InfoRecName;
499
500/* Display Info Rec as defined in C.S0005 section 3.7.5.1
501   Extended Display Info Rec as defined in C.S0005 section 3.7.5.16
502   Note: the Extended Display info rec contains multiple records of the
503   form: display_tag, display_len, and display_len occurrences of the
504   chari field if the display_tag is not 10000000 or 10000001.
505   To save space, the records are stored consecutively in a byte buffer.
506   The display_tag, display_len and chari fields are all 1 byte.
507*/
508
509typedef struct {
510  char alpha_len;
511  char alpha_buf[CDMA_ALPHA_INFO_BUFFER_LENGTH];
512} RIL_CDMA_DisplayInfoRecord;
513
514/* Called Party Number Info Rec as defined in C.S0005 section 3.7.5.2
515   Calling Party Number Info Rec as defined in C.S0005 section 3.7.5.3
516   Connected Number Info Rec as defined in C.S0005 section 3.7.5.4
517*/
518
519typedef struct {
520  char len;
521  char buf[CDMA_NUMBER_INFO_BUFFER_LENGTH];
522  char number_type;
523  char number_plan;
524  char pi;
525  char si;
526} RIL_CDMA_NumberInfoRecord;
527
528/* Redirecting Number Information Record as defined in C.S0005 section 3.7.5.11 */
529typedef enum {
530  RIL_REDIRECTING_REASON_UNKNOWN = 0,
531  RIL_REDIRECTING_REASON_CALL_FORWARDING_BUSY = 1,
532  RIL_REDIRECTING_REASON_CALL_FORWARDING_NO_REPLY = 2,
533  RIL_REDIRECTING_REASON_CALLED_DTE_OUT_OF_ORDER = 9,
534  RIL_REDIRECTING_REASON_CALL_FORWARDING_BY_THE_CALLED_DTE = 10,
535  RIL_REDIRECTING_REASON_CALL_FORWARDING_UNCONDITIONAL = 15,
536  RIL_REDIRECTING_REASON_RESERVED
537} RIL_CDMA_RedirectingReason;
538
539typedef struct {
540  RIL_CDMA_NumberInfoRecord redirectingNumber;
541  /* redirectingReason is set to RIL_REDIRECTING_REASON_UNKNOWN if not included */
542  RIL_CDMA_RedirectingReason redirectingReason;
543} RIL_CDMA_RedirectingNumberInfoRecord;
544
545/* Line Control Information Record as defined in C.S0005 section 3.7.5.15 */
546typedef struct {
547  char lineCtrlPolarityIncluded;
548  char lineCtrlToggle;
549  char lineCtrlReverse;
550  char lineCtrlPowerDenial;
551} RIL_CDMA_LineControlInfoRecord;
552
553/* T53 CLIR Information Record */
554typedef struct {
555  char cause;
556} RIL_CDMA_T53_CLIRInfoRecord;
557
558/* T53 Audio Control Information Record */
559typedef struct {
560  char upLink;
561  char downLink;
562} RIL_CDMA_T53_AudioControlInfoRecord;
563
564typedef struct {
565
566  RIL_CDMA_InfoRecName name;
567
568  union {
569    /* Display and Extended Display Info Rec */
570    RIL_CDMA_DisplayInfoRecord           display;
571
572    /* Called Party Number, Calling Party Number, Connected Number Info Rec */
573    RIL_CDMA_NumberInfoRecord            number;
574
575    /* Signal Info Rec */
576    RIL_CDMA_SignalInfoRecord            signal;
577
578    /* Redirecting Number Info Rec */
579    RIL_CDMA_RedirectingNumberInfoRecord redir;
580
581    /* Line Control Info Rec */
582    RIL_CDMA_LineControlInfoRecord       lineCtrl;
583
584    /* T53 CLIR Info Rec */
585    RIL_CDMA_T53_CLIRInfoRecord          clir;
586
587    /* T53 Audio Control Info Rec */
588    RIL_CDMA_T53_AudioControlInfoRecord  audioCtrl;
589  } rec;
590} RIL_CDMA_InformationRecord;
591
592#define RIL_CDMA_MAX_NUMBER_OF_INFO_RECS 10
593
594typedef struct {
595  char numberOfInfoRecs;
596  RIL_CDMA_InformationRecord infoRec[RIL_CDMA_MAX_NUMBER_OF_INFO_RECS];
597} RIL_CDMA_InformationRecords;
598
599/**
600 * RIL_REQUEST_GET_SIM_STATUS
601 *
602 * Requests status of the SIM interface and the SIM card
603 *
604 * "data" is NULL
605 *
606 * "response" is const RIL_CardStatus *
607 *
608 * Valid errors:
609 *  Must never fail
610 */
611#define RIL_REQUEST_GET_SIM_STATUS 1
612
613/**
614 * RIL_REQUEST_ENTER_SIM_PIN
615 *
616 * Supplies SIM PIN. Only called if RIL_CardStatus has RIL_APPSTATE_PIN state
617 *
618 * "data" is const char **
619 * ((const char **)data)[0] is PIN value
620 *
621 * "response" is int *
622 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
623 *
624 * Valid errors:
625 *
626 * SUCCESS
627 * RADIO_NOT_AVAILABLE (radio resetting)
628 * GENERIC_FAILURE
629 * PASSWORD_INCORRECT
630 */
631
632#define RIL_REQUEST_ENTER_SIM_PIN 2
633
634
635/**
636 * RIL_REQUEST_ENTER_SIM_PUK
637 *
638 * Supplies SIM PUK and new PIN.
639 *
640 * "data" is const char **
641 * ((const char **)data)[0] is PUK value
642 * ((const char **)data)[1] is new PIN value
643 *
644 * "response" is int *
645 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
646 *
647 * Valid errors:
648 *
649 *  SUCCESS
650 *  RADIO_NOT_AVAILABLE (radio resetting)
651 *  GENERIC_FAILURE
652 *  PASSWORD_INCORRECT
653 *     (PUK is invalid)
654 */
655
656#define RIL_REQUEST_ENTER_SIM_PUK 3
657
658/**
659 * RIL_REQUEST_ENTER_SIM_PIN2
660 *
661 * Supplies SIM PIN2. Only called following operation where SIM_PIN2 was
662 * returned as a a failure from a previous operation.
663 *
664 * "data" is const char **
665 * ((const char **)data)[0] is PIN2 value
666 *
667 * "response" is int *
668 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
669 *
670 * Valid errors:
671 *
672 *  SUCCESS
673 *  RADIO_NOT_AVAILABLE (radio resetting)
674 *  GENERIC_FAILURE
675 *  PASSWORD_INCORRECT
676 */
677
678#define RIL_REQUEST_ENTER_SIM_PIN2 4
679
680/**
681 * RIL_REQUEST_ENTER_SIM_PUK2
682 *
683 * Supplies SIM PUK2 and new PIN2.
684 *
685 * "data" is const char **
686 * ((const char **)data)[0] is PUK2 value
687 * ((const char **)data)[1] is new PIN2 value
688 *
689 * "response" is int *
690 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
691 *
692 * Valid errors:
693 *
694 *  SUCCESS
695 *  RADIO_NOT_AVAILABLE (radio resetting)
696 *  GENERIC_FAILURE
697 *  PASSWORD_INCORRECT
698 *     (PUK2 is invalid)
699 */
700
701#define RIL_REQUEST_ENTER_SIM_PUK2 5
702
703/**
704 * RIL_REQUEST_CHANGE_SIM_PIN
705 *
706 * Supplies old SIM PIN and new PIN.
707 *
708 * "data" is const char **
709 * ((const char **)data)[0] is old PIN value
710 * ((const char **)data)[1] is new PIN value
711 *
712 * "response" is int *
713 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
714 *
715 * Valid errors:
716 *
717 *  SUCCESS
718 *  RADIO_NOT_AVAILABLE (radio resetting)
719 *  GENERIC_FAILURE
720 *  PASSWORD_INCORRECT
721 *     (old PIN is invalid)
722 *
723 */
724
725#define RIL_REQUEST_CHANGE_SIM_PIN 6
726
727
728/**
729 * RIL_REQUEST_CHANGE_SIM_PIN2
730 *
731 * Supplies old SIM PIN2 and new PIN2.
732 *
733 * "data" is const char **
734 * ((const char **)data)[0] is old PIN2 value
735 * ((const char **)data)[1] is new PIN2 value
736 *
737 * "response" is int *
738 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
739 *
740 * Valid errors:
741 *
742 *  SUCCESS
743 *  RADIO_NOT_AVAILABLE (radio resetting)
744 *  GENERIC_FAILURE
745 *  PASSWORD_INCORRECT
746 *     (old PIN2 is invalid)
747 *
748 */
749
750#define RIL_REQUEST_CHANGE_SIM_PIN2 7
751
752/**
753 * RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION
754 *
755 * Requests that network personlization be deactivated
756 *
757 * "data" is const char **
758 * ((const char **)(data))[0]] is network depersonlization code
759 *
760 * "response" is int *
761 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
762 *
763 * Valid errors:
764 *
765 *  SUCCESS
766 *  RADIO_NOT_AVAILABLE (radio resetting)
767 *  GENERIC_FAILURE
768 *  PASSWORD_INCORRECT
769 *     (code is invalid)
770 */
771
772#define RIL_REQUEST_ENTER_NETWORK_DEPERSONALIZATION 8
773
774/**
775 * RIL_REQUEST_GET_CURRENT_CALLS
776 *
777 * Requests current call list
778 *
779 * "data" is NULL
780 *
781 * "response" must be a "const RIL_Call **"
782 *
783 * Valid errors:
784 *
785 *  SUCCESS
786 *  RADIO_NOT_AVAILABLE (radio resetting)
787 *  GENERIC_FAILURE
788 *      (request will be made again in a few hundred msec)
789 */
790
791#define RIL_REQUEST_GET_CURRENT_CALLS 9
792
793
794/**
795 * RIL_REQUEST_DIAL
796 *
797 * Initiate voice call
798 *
799 * "data" is const RIL_Dial *
800 * "response" is NULL
801 *
802 * This method is never used for supplementary service codes
803 *
804 * Valid errors:
805 *  SUCCESS
806 *  RADIO_NOT_AVAILABLE (radio resetting)
807 *  GENERIC_FAILURE
808 */
809#define RIL_REQUEST_DIAL 10
810
811/**
812 * RIL_REQUEST_GET_IMSI
813 *
814 * Get the SIM IMSI
815 *
816 * Only valid when radio state is "RADIO_STATE_SIM_READY"
817 *
818 * "data" is NULL
819 * "response" is a const char * containing the IMSI
820 *
821 * Valid errors:
822 *  SUCCESS
823 *  RADIO_NOT_AVAILABLE (radio resetting)
824 *  GENERIC_FAILURE
825 */
826
827#define RIL_REQUEST_GET_IMSI 11
828
829/**
830 * RIL_REQUEST_HANGUP
831 *
832 * Hang up a specific line (like AT+CHLD=1x)
833 *
834 * "data" is an int *
835 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above)
836 *
837 * "response" is NULL
838 *
839 * Valid errors:
840 *  SUCCESS
841 *  RADIO_NOT_AVAILABLE (radio resetting)
842 *  GENERIC_FAILURE
843 */
844
845#define RIL_REQUEST_HANGUP 12
846
847/**
848 * RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND
849 *
850 * Hang up waiting or held (like AT+CHLD=0)
851 *
852 * "data" is NULL
853 * "response" is NULL
854 *
855 * Valid errors:
856 *  SUCCESS
857 *  RADIO_NOT_AVAILABLE (radio resetting)
858 *  GENERIC_FAILURE
859 */
860
861#define RIL_REQUEST_HANGUP_WAITING_OR_BACKGROUND 13
862
863/**
864 * RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND
865 *
866 * Hang up waiting or held (like AT+CHLD=1)
867 *
868 * "data" is NULL
869 * "response" is NULL
870 *
871 * Valid errors:
872 *  SUCCESS
873 *  RADIO_NOT_AVAILABLE (radio resetting)
874 *  GENERIC_FAILURE
875 */
876
877#define RIL_REQUEST_HANGUP_FOREGROUND_RESUME_BACKGROUND 14
878
879/**
880 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE
881 *
882 * Switch waiting or holding call and active call (like AT+CHLD=2)
883 *
884 * State transitions should be is follows:
885 *
886 * If call 1 is waiting and call 2 is active, then if this re
887 *
888 *   BEFORE                               AFTER
889 * Call 1   Call 2                 Call 1       Call 2
890 * ACTIVE   HOLDING                HOLDING     ACTIVE
891 * ACTIVE   WAITING                HOLDING     ACTIVE
892 * HOLDING  WAITING                HOLDING     ACTIVE
893 * ACTIVE   IDLE                   HOLDING     IDLE
894 * IDLE     IDLE                   IDLE        IDLE
895 *
896 * "data" is NULL
897 * "response" is NULL
898 *
899 * Valid errors:
900 *  SUCCESS
901 *  RADIO_NOT_AVAILABLE (radio resetting)
902 *  GENERIC_FAILURE
903 */
904
905#define RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE 15
906#define RIL_REQUEST_SWITCH_HOLDING_AND_ACTIVE 15
907
908/**
909 * RIL_REQUEST_CONFERENCE
910 *
911 * Conference holding and active (like AT+CHLD=3)
912
913 * "data" is NULL
914 * "response" is NULL
915 *
916 * Valid errors:
917 *  SUCCESS
918 *  RADIO_NOT_AVAILABLE (radio resetting)
919 *  GENERIC_FAILURE
920 */
921#define RIL_REQUEST_CONFERENCE 16
922
923/**
924 * RIL_REQUEST_UDUB
925 *
926 * Send UDUB (user determined used busy) to ringing or
927 * waiting call answer)(RIL_BasicRequest r);
928 *
929 * "data" is NULL
930 * "response" is NULL
931 *
932 * Valid errors:
933 *  SUCCESS
934 *  RADIO_NOT_AVAILABLE (radio resetting)
935 *  GENERIC_FAILURE
936 */
937#define RIL_REQUEST_UDUB 17
938
939/**
940 * RIL_REQUEST_LAST_CALL_FAIL_CAUSE
941 *
942 * Requests the failure cause code for the most recently terminated call
943 *
944 * "data" is NULL
945 * "response" is a "int *"
946 * ((int *)response)[0] is RIL_LastCallFailCause.  GSM failure reasons are
947 * mapped to cause codes defined in TS 24.008 Annex H where possible. CDMA
948 * failure reasons are derived from the possible call failure scenarios
949 * described in the "CDMA IS-2000 Release A (C.S0005-A v6.0)" standard.
950 *
951 * The implementation should return CALL_FAIL_ERROR_UNSPECIFIED for blocked
952 * MO calls by restricted state (See RIL_UNSOL_RESTRICTED_STATE_CHANGED)
953 *
954 * If the implementation does not have access to the exact cause codes,
955 * then it should return one of the values listed in RIL_LastCallFailCause,
956 * as the UI layer needs to distinguish these cases for tone generation or
957 * error notification.
958 *
959 * Valid errors:
960 *  SUCCESS
961 *  RADIO_NOT_AVAILABLE
962 *  GENERIC_FAILURE
963 *
964 * See also: RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE
965 */
966#define RIL_REQUEST_LAST_CALL_FAIL_CAUSE 18
967
968/**
969 * RIL_REQUEST_SIGNAL_STRENGTH
970 *
971 * Requests current signal strength and associated information
972 *
973 * Must succeed if radio is on.
974 *
975 * "data" is NULL
976 *
977 * "response" is a const RIL_SignalStrength *
978 *
979 * Valid errors:
980 *  SUCCESS
981 *  RADIO_NOT_AVAILABLE
982 */
983#define RIL_REQUEST_SIGNAL_STRENGTH 19
984
985/**
986 * RIL_REQUEST_REGISTRATION_STATE
987 *
988 * Request current registration state
989 *
990 * "data" is NULL
991 * "response" is a "char **"
992 * ((const char **)response)[0] is registration state 0-6,
993 *              0 - Not registered, MT is not currently searching
994 *                  a new operator to register
995 *              1 - Registered, home network
996 *              2 - Not registered, but MT is currently searching
997 *                  a new operator to register
998 *              3 - Registration denied
999 *              4 - Unknown
1000 *              5 - Registered, roaming
1001 *             10 - Same as 0, but indicates that emergency calls
1002 *                  are enabled.
1003 *             12 - Same as 2, but indicates that emergency calls
1004 *                  are enabled.
1005 *             13 - Same as 3, but indicates that emergency calls
1006 *                  are enabled.
1007 *             14 - Same as 4, but indicates that emergency calls
1008 *                  are enabled.
1009 *
1010 * ((const char **)response)[1] is LAC if registered on a GSM/WCDMA system or
1011 *                              NULL if not.Valid LAC are 0x0000 - 0xffff
1012 * ((const char **)response)[2] is CID if registered on a * GSM/WCDMA or
1013 *                              NULL if not.
1014 *                                 Valid CID are 0x00000000 - 0xffffffff
1015 *                                    In GSM, CID is Cell ID (see TS 27.007)
1016 *                                            in 16 bits
1017 *                                    In UMTS, CID is UMTS Cell Identity
1018 *                                             (see TS 25.331) in 28 bits
1019 * ((const char **)response)[3] indicates the available radio technology 0-7,
1020 *                                  0 - Unknown, 1 - GPRS, 2 - EDGE, 3 - UMTS,
1021 *                                  4 - IS95A, 5 - IS95B, 6 - 1xRTT,
1022 *                                  7 - EvDo Rev. 0, 8 - EvDo Rev. A,
1023 *                                  9 - HSDPA, 10 - HSUPA, 11 - HSPA
1024 * ((const char **)response)[4] is Base Station ID if registered on a CDMA
1025 *                              system or NULL if not.  Base Station ID in
1026 *                              decimal format
1027 * ((const char **)response)[5] is Base Station latitude if registered on a
1028 *                              CDMA system or NULL if not. Base Station
1029 *                              latitude is a decimal number as specified in
1030 *                              3GPP2 C.S0005-A v6.0. It is represented in
1031 *                              units of 0.25 seconds and ranges from -1296000
1032 *                              to 1296000, both values inclusive (corresponding
1033 *                              to a range of -90� to +90�).
1034 * ((const char **)response)[6] is Base Station longitude if registered on a
1035 *                              CDMA system or NULL if not. Base Station
1036 *                              longitude is a decimal number as specified in
1037 *                              3GPP2 C.S0005-A v6.0. It is represented in
1038 *                              units of 0.25 seconds and ranges from -2592000
1039 *                              to 2592000, both values inclusive (corresponding
1040 *                              to a range of -180� to +180�).
1041 * ((const char **)response)[7] is concurrent services support indicator if
1042 *                              registered on a CDMA system 0-1.
1043 *                                   0 - Concurrent services not supported,
1044 *                                   1 - Concurrent services supported
1045 * ((const char **)response)[8] is System ID if registered on a CDMA system or
1046 *                              NULL if not. Valid System ID are 0 - 32767
1047 * ((const char **)response)[9] is Network ID if registered on a CDMA system or
1048 *                              NULL if not. Valid System ID are 0 - 65535
1049 * ((const char **)response)[10] is the TSB-58 Roaming Indicator if registered
1050 *                               on a CDMA or EVDO system or NULL if not. Valid values
1051 *                               are 0-255.
1052 * ((const char **)response)[11] indicates whether the current system is in the
1053 *                               PRL if registered on a CDMA or EVDO system or NULL if
1054 *                               not. 0=not in the PRL, 1=in the PRL
1055 * ((const char **)response)[12] is the default Roaming Indicator from the PRL,
1056 *                               if registered on a CDMA or EVDO system or NULL if not.
1057 *                               Valid values are 0-255.
1058 * ((const char **)response)[13] if registration state is 3 (Registration
1059 *                               denied) this is an enumerated reason why
1060 *                               registration was denied.  See 3GPP TS 24.008,
1061 *                               10.5.3.6 and Annex G.
1062 *                                 0 - General
1063 *                                 1 - Authentication Failure
1064 *                                 2 - IMSI unknown in HLR
1065 *                                 3 - Illegal MS
1066 *                                 4 - Illegal ME
1067 *                                 5 - PLMN not allowed
1068 *                                 6 - Location area not allowed
1069 *                                 7 - Roaming not allowed
1070 *                                 8 - No Suitable Cells in this Location Area
1071 *                                 9 - Network failure
1072 *                                10 - Persistent location update reject
1073 *
1074 * Please note that registration state 4 ("unknown") is treated
1075 * as "out of service" in the Android telephony system
1076 *
1077 * Registration state 3 can be returned if Location Update Reject
1078 * (with cause 17 - Network Failure) is received repeatedly from the network,
1079 * to facilitate "managed roaming"
1080 *
1081 * Valid errors:
1082 *  SUCCESS
1083 *  RADIO_NOT_AVAILABLE
1084 *  GENERIC_FAILURE
1085 */
1086#define RIL_REQUEST_REGISTRATION_STATE 20
1087
1088/**
1089 * RIL_REQUEST_GPRS_REGISTRATION_STATE
1090 *
1091 * Request current GPRS registration state
1092 *
1093 * "data" is NULL
1094 * "response" is a "char **"
1095 * ((const char **)response)[0] is registration state 0-5 from TS 27.007 10.1.20 AT+CGREG
1096 * ((const char **)response)[1] is LAC if registered or NULL if not
1097 * ((const char **)response)[2] is CID if registered or NULL if not
1098 * ((const char **)response)[3] indicates the available radio technology, where:
1099 *      0 == unknown
1100 *      1 == GPRS only
1101 *      2 == EDGE
1102 *      3 == UMTS
1103 *      9 == HSDPA
1104 *      10 == HSUPA
1105 *      11 == HSPA
1106 *
1107 * LAC and CID are in hexadecimal format.
1108 * valid LAC are 0x0000 - 0xffff
1109 * valid CID are 0x00000000 - 0x0fffffff
1110 *
1111 * Please note that registration state 4 ("unknown") is treated
1112 * as "out of service" in the Android telephony system
1113 *
1114 * Valid errors:
1115 *  SUCCESS
1116 *  RADIO_NOT_AVAILABLE
1117 *  GENERIC_FAILURE
1118 */
1119#define RIL_REQUEST_GPRS_REGISTRATION_STATE 21
1120
1121/**
1122 * RIL_REQUEST_OPERATOR
1123 *
1124 * Request current operator ONS or EONS
1125 *
1126 * "data" is NULL
1127 * "response" is a "const char **"
1128 * ((const char **)response)[0] is long alpha ONS or EONS
1129 *                                  or NULL if unregistered
1130 *
1131 * ((const char **)response)[1] is short alpha ONS or EONS
1132 *                                  or NULL if unregistered
1133 * ((const char **)response)[2] is 5 or 6 digit numeric code (MCC + MNC)
1134 *                                  or NULL if unregistered
1135 *
1136 * Valid errors:
1137 *  SUCCESS
1138 *  RADIO_NOT_AVAILABLE
1139 *  GENERIC_FAILURE
1140 */
1141#define RIL_REQUEST_OPERATOR 22
1142
1143/**
1144 * RIL_REQUEST_RADIO_POWER
1145 *
1146 * Toggle radio on and off (for "airplane" mode)
1147 * "data" is int *
1148 * ((int *)data)[0] is > 0 for "Radio On"
1149 * ((int *)data)[0] is == 0 for "Radio Off"
1150 *
1151 * "response" is NULL
1152 *
1153 * Turn radio on if "on" > 0
1154 * Turn radio off if "on" == 0
1155 *
1156 * Valid errors:
1157 *  SUCCESS
1158 *  RADIO_NOT_AVAILABLE
1159 *  GENERIC_FAILURE
1160 */
1161#define RIL_REQUEST_RADIO_POWER 23
1162
1163/**
1164 * RIL_REQUEST_DTMF
1165 *
1166 * Send a DTMF tone
1167 *
1168 * If the implementation is currently playing a tone requested via
1169 * RIL_REQUEST_DTMF_START, that tone should be cancelled and the new tone
1170 * should be played instead
1171 *
1172 * "data" is a char * containing a single character with one of 12 values: 0-9,*,#
1173 * "response" is NULL
1174 *
1175 * FIXME should this block/mute microphone?
1176 * How does this interact with local DTMF feedback?
1177 *
1178 * Valid errors:
1179 *  SUCCESS
1180 *  RADIO_NOT_AVAILABLE
1181 *  GENERIC_FAILURE
1182 *
1183 * See also: RIL_REQUEST_DTMF_STOP, RIL_REQUEST_DTMF_START
1184 *
1185 */
1186#define RIL_REQUEST_DTMF 24
1187
1188/**
1189 * RIL_REQUEST_SEND_SMS
1190 *
1191 * Send an SMS message
1192 *
1193 * "data" is const char **
1194 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
1195 *      by a length byte (as expected by TS 27.005) or NULL for default SMSC
1196 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
1197 *      less the SMSC address
1198 *      TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
1199 *
1200 * "response" is a const RIL_SMS_Response *
1201 *
1202 * Based on the return error, caller decides to resend if sending sms
1203 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
1204 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
1205 *
1206 * Valid errors:
1207 *  SUCCESS
1208 *  RADIO_NOT_AVAILABLE
1209 *  SMS_SEND_FAIL_RETRY
1210 *  FDN_CHECK_FAILURE
1211 *  GENERIC_FAILURE
1212 *
1213 * FIXME how do we specify TP-Message-Reference if we need to resend?
1214 */
1215#define RIL_REQUEST_SEND_SMS 25
1216
1217
1218/**
1219 * RIL_REQUEST_SEND_SMS_EXPECT_MORE
1220 *
1221 * Send an SMS message. Identical to RIL_REQUEST_SEND_SMS,
1222 * except that more messages are expected to be sent soon. If possible,
1223 * keep SMS relay protocol link open (eg TS 27.005 AT+CMMS command)
1224 *
1225 * "data" is const char **
1226 * ((const char **)data)[0] is SMSC address in GSM BCD format prefixed
1227 *      by a length byte (as expected by TS 27.005) or NULL for default SMSC
1228 * ((const char **)data)[1] is SMS in PDU format as an ASCII hex string
1229 *      less the SMSC address
1230 *      TP-Layer-Length is be "strlen(((const char **)data)[1])/2"
1231 *
1232 * "response" is a const RIL_SMS_Response *
1233 *
1234 * Based on the return error, caller decides to resend if sending sms
1235 * fails. SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
1236 * and GENERIC_FAILURE means no retry (i.e. error cause is 500)
1237 *
1238 * Valid errors:
1239 *  SUCCESS
1240 *  RADIO_NOT_AVAILABLE
1241 *  SMS_SEND_FAIL_RETRY
1242 *  GENERIC_FAILURE
1243 *
1244 */
1245#define RIL_REQUEST_SEND_SMS_EXPECT_MORE 26
1246
1247
1248/**
1249 * RIL_REQUEST_SETUP_DATA_CALL
1250 *
1251 * Setup a packet data connection
1252 *
1253 * "data" is a const char **
1254 * ((const char **)data)[0] indicates whether to setup connection on radio technology CDMA
1255 *                              or GSM/UMTS, 0-1. 0 - CDMA, 1-GSM/UMTS
1256 *
1257 * ((const char **)data)[1] is a RIL_DataProfile (support is optional)
1258 * ((const char **)data)[2] is the APN to connect to if radio technology is GSM/UMTS. This APN will
1259 *                          override the one in the profile. NULL indicates no APN overrride.
1260 * ((const char **)data)[3] is the username for APN, or NULL
1261 * ((const char **)data)[4] is the password for APN, or NULL
1262 * ((const char **)data)[5] is the PAP / CHAP auth type. Values:
1263 *                          0 => PAP and CHAP is never performed.
1264 *                          1 => PAP may be performed; CHAP is never performed.
1265 *                          2 => CHAP may be performed; PAP is never performed.
1266 *                          3 => PAP / CHAP may be performed - baseband dependent.
1267 *
1268 * "response" is a char **
1269 * ((char **)response)[0] indicating PDP CID, which is generated by RIL. This Connection ID is
1270 *                          used in GSM/UMTS and CDMA
1271 * ((char **)response)[1] indicating the network interface name for GSM/UMTS or CDMA
1272 * ((char **)response)[2] indicating the IP address for this interface for GSM/UMTS
1273 *                          and NULL for CDMA
1274 *
1275 * FIXME may need way to configure QoS settings
1276 *
1277 * replaces  RIL_REQUEST_SETUP_DEFAULT_PDP
1278 *
1279 * Valid errors:
1280 *  SUCCESS
1281 *  RADIO_NOT_AVAILABLE
1282 *  GENERIC_FAILURE
1283 *
1284 * See also: RIL_REQUEST_DEACTIVATE_DATA_CALL
1285 */
1286#define RIL_REQUEST_SETUP_DATA_CALL 27
1287
1288
1289
1290/**
1291 * RIL_REQUEST_SIM_IO
1292 *
1293 * Request SIM I/O operation.
1294 * This is similar to the TS 27.007 "restricted SIM" operation
1295 * where it assumes all of the EF selection will be done by the
1296 * callee.
1297 *
1298 * "data" is a const RIL_SIM_IO *
1299 * Please note that RIL_SIM_IO has a "PIN2" field which may be NULL,
1300 * or may specify a PIN2 for operations that require a PIN2 (eg
1301 * updating FDN records)
1302 *
1303 * "response" is a const RIL_SIM_IO_Response *
1304 *
1305 * Arguments and responses that are unused for certain
1306 * values of "command" should be ignored or set to NULL
1307 *
1308 * Valid errors:
1309 *  SUCCESS
1310 *  RADIO_NOT_AVAILABLE
1311 *  GENERIC_FAILURE
1312 *  SIM_PIN2
1313 *  SIM_PUK2
1314 */
1315#define RIL_REQUEST_SIM_IO 28
1316
1317/**
1318 * RIL_REQUEST_SEND_USSD
1319 *
1320 * Send a USSD message
1321 *
1322 * If a USSD session already exists, the message should be sent in the
1323 * context of that session. Otherwise, a new session should be created.
1324 *
1325 * The network reply should be reported via RIL_UNSOL_ON_USSD
1326 *
1327 * Only one USSD session may exist at a time, and the session is assumed
1328 * to exist until:
1329 *   a) The android system invokes RIL_REQUEST_CANCEL_USSD
1330 *   b) The implementation sends a RIL_UNSOL_ON_USSD with a type code
1331 *      of "0" (USSD-Notify/no further action) or "2" (session terminated)
1332 *
1333 * "data" is a const char * containing the USSD request in UTF-8 format
1334 * "response" is NULL
1335 *
1336 * Valid errors:
1337 *  SUCCESS
1338 *  RADIO_NOT_AVAILABLE
1339 *  FDN_CHECK_FAILURE
1340 *  GENERIC_FAILURE
1341 *
1342 * See also: RIL_REQUEST_CANCEL_USSD, RIL_UNSOL_ON_USSD
1343 */
1344
1345#define RIL_REQUEST_SEND_USSD 29
1346
1347/**
1348 * RIL_REQUEST_CANCEL_USSD
1349 *
1350 * Cancel the current USSD session if one exists
1351 *
1352 * "data" is null
1353 * "response" is NULL
1354 *
1355 * Valid errors:
1356 *  SUCCESS
1357 *  RADIO_NOT_AVAILABLE
1358 *  GENERIC_FAILURE
1359 */
1360
1361#define RIL_REQUEST_CANCEL_USSD 30
1362
1363/**
1364 * RIL_REQUEST_GET_CLIR
1365 *
1366 * Gets current CLIR status
1367 * "data" is NULL
1368 * "response" is int *
1369 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
1370 * ((int *)data)[1] is "m" parameter from TS 27.007 7.7
1371 *
1372 * Valid errors:
1373 *  SUCCESS
1374 *  RADIO_NOT_AVAILABLE
1375 *  GENERIC_FAILURE
1376 */
1377#define RIL_REQUEST_GET_CLIR 31
1378
1379/**
1380 * RIL_REQUEST_SET_CLIR
1381 *
1382 * "data" is int *
1383 * ((int *)data)[0] is "n" parameter from TS 27.007 7.7
1384 *
1385 * "response" is NULL
1386 *
1387 * Valid errors:
1388 *  SUCCESS
1389 *  RADIO_NOT_AVAILABLE
1390 *  GENERIC_FAILURE
1391 */
1392#define RIL_REQUEST_SET_CLIR 32
1393
1394/**
1395 * RIL_REQUEST_QUERY_CALL_FORWARD_STATUS
1396 *
1397 * "data" is const RIL_CallForwardInfo *
1398 *
1399 * "response" is const RIL_CallForwardInfo **
1400 * "response" points to an array of RIL_CallForwardInfo *'s, one for
1401 * each distinct registered phone number.
1402 *
1403 * For example, if data is forwarded to +18005551212 and voice is forwarded
1404 * to +18005559999, then two separate RIL_CallForwardInfo's should be returned
1405 *
1406 * If, however, both data and voice are forwarded to +18005551212, then
1407 * a single RIL_CallForwardInfo can be returned with the service class
1408 * set to "data + voice = 3")
1409 *
1410 * Valid errors:
1411 *  SUCCESS
1412 *  RADIO_NOT_AVAILABLE
1413 *  GENERIC_FAILURE
1414 */
1415#define RIL_REQUEST_QUERY_CALL_FORWARD_STATUS 33
1416
1417
1418/**
1419 * RIL_REQUEST_SET_CALL_FORWARD
1420 *
1421 * Configure call forward rule
1422 *
1423 * "data" is const RIL_CallForwardInfo *
1424 * "response" is NULL
1425 *
1426 * Valid errors:
1427 *  SUCCESS
1428 *  RADIO_NOT_AVAILABLE
1429 *  GENERIC_FAILURE
1430 */
1431#define RIL_REQUEST_SET_CALL_FORWARD 34
1432
1433
1434/**
1435 * RIL_REQUEST_QUERY_CALL_WAITING
1436 *
1437 * Query current call waiting state
1438 *
1439 * "data" is const int *
1440 * ((const int *)data)[0] is the TS 27.007 service class to query.
1441 * "response" is a const int *
1442 * ((const int *)response)[0] is 0 for "disabled" and 1 for "enabled"
1443 *
1444 * If ((const int *)response)[0] is = 1, then ((const int *)response)[1]
1445 * must follow, with the TS 27.007 service class bit vector of services
1446 * for which call waiting is enabled.
1447 *
1448 * For example, if ((const int *)response)[0]  is 1 and
1449 * ((const int *)response)[1] is 3, then call waiting is enabled for data
1450 * and voice and disabled for everything else
1451 *
1452 * Valid errors:
1453 *  SUCCESS
1454 *  RADIO_NOT_AVAILABLE
1455 *  GENERIC_FAILURE
1456 */
1457#define RIL_REQUEST_QUERY_CALL_WAITING 35
1458
1459
1460/**
1461 * RIL_REQUEST_SET_CALL_WAITING
1462 *
1463 * Configure current call waiting state
1464 *
1465 * "data" is const int *
1466 * ((const int *)data)[0] is 0 for "disabled" and 1 for "enabled"
1467 * ((const int *)data)[1] is the TS 27.007 service class bit vector of
1468 *                           services to modify
1469 * "response" is NULL
1470 *
1471 * Valid errors:
1472 *  SUCCESS
1473 *  RADIO_NOT_AVAILABLE
1474 *  GENERIC_FAILURE
1475 */
1476#define RIL_REQUEST_SET_CALL_WAITING 36
1477
1478/**
1479 * RIL_REQUEST_SMS_ACKNOWLEDGE
1480 *
1481 * Acknowledge successful or failed receipt of SMS previously indicated
1482 * via RIL_UNSOL_RESPONSE_NEW_SMS
1483 *
1484 * "data" is int *
1485 * ((int *)data)[0] is 1 on successful receipt
1486 *                  (basically, AT+CNMA=1 from TS 27.005
1487 *                  is 0 on failed receipt
1488 *                  (basically, AT+CNMA=2 from TS 27.005)
1489 * ((int *)data)[1] if data[0] is 0, this contains the failure cause as defined
1490 *                  in TS 23.040, 9.2.3.22. Currently only 0xD3 (memory
1491 *                  capacity exceeded) and 0xFF (unspecified error) are
1492 *                  reported.
1493 *
1494 * "response" is NULL
1495 *
1496 * FIXME would like request that specified RP-ACK/RP-ERROR PDU
1497 *
1498 * Valid errors:
1499 *  SUCCESS
1500 *  RADIO_NOT_AVAILABLE
1501 *  GENERIC_FAILURE
1502 */
1503#define RIL_REQUEST_SMS_ACKNOWLEDGE  37
1504
1505/**
1506 * RIL_REQUEST_GET_IMEI - DEPRECATED
1507 *
1508 * Get the device IMEI, including check digit
1509 *
1510 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
1511 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
1512 *
1513 * "data" is NULL
1514 * "response" is a const char * containing the IMEI
1515 *
1516 * Valid errors:
1517 *  SUCCESS
1518 *  RADIO_NOT_AVAILABLE (radio resetting)
1519 *  GENERIC_FAILURE
1520 */
1521
1522#define RIL_REQUEST_GET_IMEI 38
1523
1524/**
1525 * RIL_REQUEST_GET_IMEISV - DEPRECATED
1526 *
1527 * Get the device IMEISV, which should be two decimal digits
1528 *
1529 * The request is DEPRECATED, use RIL_REQUEST_DEVICE_IDENTITY
1530 * Valid when RadioState is not RADIO_STATE_UNAVAILABLE
1531 *
1532 * "data" is NULL
1533 * "response" is a const char * containing the IMEISV
1534 *
1535 * Valid errors:
1536 *  SUCCESS
1537 *  RADIO_NOT_AVAILABLE (radio resetting)
1538 *  GENERIC_FAILURE
1539 */
1540
1541#define RIL_REQUEST_GET_IMEISV 39
1542
1543
1544/**
1545 * RIL_REQUEST_ANSWER
1546 *
1547 * Answer incoming call
1548 *
1549 * Will not be called for WAITING calls.
1550 * RIL_REQUEST_SWITCH_WAITING_OR_HOLDING_AND_ACTIVE will be used in this case
1551 * instead
1552 *
1553 * "data" is NULL
1554 * "response" is NULL
1555 *
1556 * Valid errors:
1557 *  SUCCESS
1558 *  RADIO_NOT_AVAILABLE (radio resetting)
1559 *  GENERIC_FAILURE
1560 */
1561
1562#define RIL_REQUEST_ANSWER 40
1563
1564/**
1565 * RIL_REQUEST_DEACTIVATE_DATA_CALL
1566 *
1567 * Deactivate packet data connection
1568 * replaces RIL_REQUEST_DEACTIVATE_DEFAULT_PDP
1569 *
1570 * "data" is const char **
1571 * ((char**)data)[0] indicating CID
1572 *
1573 * "response" is NULL
1574 *
1575 * Valid errors:
1576 *  SUCCESS
1577 *  RADIO_NOT_AVAILABLE
1578 *  GENERIC_FAILURE
1579 *
1580 * See also: RIL_REQUEST_SETUP_DATA_CALL
1581 */
1582#define RIL_REQUEST_DEACTIVATE_DATA_CALL 41
1583
1584/**
1585 * RIL_REQUEST_QUERY_FACILITY_LOCK
1586 *
1587 * Query the status of a facility lock state
1588 *
1589 * "data" is const char **
1590 * ((const char **)data)[0] is the facility string code from TS 27.007 7.4
1591 *                      (eg "AO" for BAOC, "SC" for SIM lock)
1592 * ((const char **)data)[1] is the password, or "" if not required
1593 * ((const char **)data)[2] is the TS 27.007 service class bit vector of
1594 *                           services to query
1595 *
1596 * "response" is an int *
1597 * ((const int *)response) 0 is the TS 27.007 service class bit vector of
1598 *                           services for which the specified barring facility
1599 *                           is active. "0" means "disabled for all"
1600 *
1601 *
1602 * Valid errors:
1603 *  SUCCESS
1604 *  RADIO_NOT_AVAILABLE
1605 *  GENERIC_FAILURE
1606 *
1607 */
1608#define RIL_REQUEST_QUERY_FACILITY_LOCK 42
1609
1610/**
1611 * RIL_REQUEST_SET_FACILITY_LOCK
1612 *
1613 * Enable/disable one facility lock
1614 *
1615 * "data" is const char **
1616 *
1617 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
1618 * (eg "AO" for BAOC)
1619 * ((const char **)data)[1] = "0" for "unlock" and "1" for "lock"
1620 * ((const char **)data)[2] = password
1621 * ((const char **)data)[3] = string representation of decimal TS 27.007
1622 *                            service class bit vector. Eg, the string
1623 *                            "1" means "set this facility for voice services"
1624 *
1625 * "response" is int *
1626 * ((int *)response)[0] is the number of retries remaining, or -1 if unknown
1627 *
1628 * Valid errors:
1629 *  SUCCESS
1630 *  RADIO_NOT_AVAILABLE
1631 *  GENERIC_FAILURE
1632 *
1633 */
1634#define RIL_REQUEST_SET_FACILITY_LOCK 43
1635
1636/**
1637 * RIL_REQUEST_CHANGE_BARRING_PASSWORD
1638 *
1639 * Change call barring facility password
1640 *
1641 * "data" is const char **
1642 *
1643 * ((const char **)data)[0] = facility string code from TS 27.007 7.4
1644 * (eg "AO" for BAOC)
1645 * ((const char **)data)[1] = old password
1646 * ((const char **)data)[2] = new password
1647 *
1648 * "response" is NULL
1649 *
1650 * Valid errors:
1651 *  SUCCESS
1652 *  RADIO_NOT_AVAILABLE
1653 *  GENERIC_FAILURE
1654 *
1655 */
1656#define RIL_REQUEST_CHANGE_BARRING_PASSWORD 44
1657
1658/**
1659 * RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE
1660 *
1661 * Query current network selectin mode
1662 *
1663 * "data" is NULL
1664 *
1665 * "response" is int *
1666 * ((const int *)response)[0] is
1667 *     0 for automatic selection
1668 *     1 for manual selection
1669 *
1670 * Valid errors:
1671 *  SUCCESS
1672 *  RADIO_NOT_AVAILABLE
1673 *  GENERIC_FAILURE
1674 *
1675 */
1676#define RIL_REQUEST_QUERY_NETWORK_SELECTION_MODE 45
1677
1678/**
1679 * RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC
1680 *
1681 * Specify that the network should be selected automatically
1682 *
1683 * "data" is NULL
1684 * "response" is NULL
1685 *
1686 * This request must not respond until the new operator is selected
1687 * and registered
1688 *
1689 * Valid errors:
1690 *  SUCCESS
1691 *  RADIO_NOT_AVAILABLE
1692 *  GENERIC_FAILURE
1693 *
1694 */
1695#define RIL_REQUEST_SET_NETWORK_SELECTION_AUTOMATIC 46
1696
1697/**
1698 * RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL
1699 *
1700 * Manually select a specified network.
1701 *
1702 * "data" is const char * specifying MCCMNC of network to select (eg "310170")
1703 * "response" is NULL
1704 *
1705 * This request must not respond until the new operator is selected
1706 * and registered
1707 *
1708 * Valid errors:
1709 *  SUCCESS
1710 *  RADIO_NOT_AVAILABLE
1711 *  GENERIC_FAILURE
1712 *
1713 */
1714#define RIL_REQUEST_SET_NETWORK_SELECTION_MANUAL 47
1715
1716/**
1717 * RIL_REQUEST_QUERY_AVAILABLE_NETWORKS
1718 *
1719 * Scans for available networks
1720 *
1721 * "data" is NULL
1722 * "response" is const char ** that should be an array of n*4 strings, where
1723 *    n is the number of available networks
1724 * For each available network:
1725 *
1726 * ((const char **)response)[n+0] is long alpha ONS or EONS
1727 * ((const char **)response)[n+1] is short alpha ONS or EONS
1728 * ((const char **)response)[n+2] is 5 or 6 digit numeric code (MCC + MNC)
1729 * ((const char **)response)[n+3] is a string value of the status:
1730 *           "unknown"
1731 *           "available"
1732 *           "current"
1733 *           "forbidden"
1734 *
1735 * This request must not respond until the new operator is selected
1736 * and registered
1737 *
1738 * Valid errors:
1739 *  SUCCESS
1740 *  RADIO_NOT_AVAILABLE
1741 *  GENERIC_FAILURE
1742 *
1743 */
1744#define RIL_REQUEST_QUERY_AVAILABLE_NETWORKS 48
1745
1746/**
1747 * RIL_REQUEST_DTMF_START
1748 *
1749 * Start playing a DTMF tone. Continue playing DTMF tone until
1750 * RIL_REQUEST_DTMF_STOP is received
1751 *
1752 * If a RIL_REQUEST_DTMF_START is received while a tone is currently playing,
1753 * it should cancel the previous tone and play the new one.
1754 *
1755 * "data" is a char *
1756 * ((char *)data)[0] is a single character with one of 12 values: 0-9,*,#
1757 * "response" is NULL
1758 *
1759 * Valid errors:
1760 *  SUCCESS
1761 *  RADIO_NOT_AVAILABLE
1762 *  GENERIC_FAILURE
1763 *
1764 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_STOP
1765 */
1766#define RIL_REQUEST_DTMF_START 49
1767
1768/**
1769 * RIL_REQUEST_DTMF_STOP
1770 *
1771 * Stop playing a currently playing DTMF tone.
1772 *
1773 * "data" is NULL
1774 * "response" is NULL
1775 *
1776 * Valid errors:
1777 *  SUCCESS
1778 *  RADIO_NOT_AVAILABLE
1779 *  GENERIC_FAILURE
1780 *
1781 * See also: RIL_REQUEST_DTMF, RIL_REQUEST_DTMF_START
1782 */
1783#define RIL_REQUEST_DTMF_STOP 50
1784
1785/**
1786 * RIL_REQUEST_BASEBAND_VERSION
1787 *
1788 * Return string value indicating baseband version, eg
1789 * response from AT+CGMR
1790 *
1791 * "data" is NULL
1792 * "response" is const char * containing version string for log reporting
1793 *
1794 * Valid errors:
1795 *  SUCCESS
1796 *  RADIO_NOT_AVAILABLE
1797 *  GENERIC_FAILURE
1798 *
1799 */
1800#define RIL_REQUEST_BASEBAND_VERSION 51
1801
1802/**
1803 * RIL_REQUEST_SEPARATE_CONNECTION
1804 *
1805 * Separate a party from a multiparty call placing the multiparty call
1806 * (less the specified party) on hold and leaving the specified party
1807 * as the only other member of the current (active) call
1808 *
1809 * Like AT+CHLD=2x
1810 *
1811 * See TS 22.084 1.3.8.2 (iii)
1812 * TS 22.030 6.5.5 "Entering "2X followed by send"
1813 * TS 27.007 "AT+CHLD=2x"
1814 *
1815 * "data" is an int *
1816 * (int *)data)[0] contains Connection index (value of 'x' in CHLD above) "response" is NULL
1817 *
1818 * "response" is NULL
1819 *
1820 * Valid errors:
1821 *  SUCCESS
1822 *  RADIO_NOT_AVAILABLE (radio resetting)
1823 *  GENERIC_FAILURE
1824 */
1825#define RIL_REQUEST_SEPARATE_CONNECTION 52
1826
1827
1828/**
1829 * RIL_REQUEST_SET_MUTE
1830 *
1831 * Turn on or off uplink (microphone) mute.
1832 *
1833 * Will only be sent while voice call is active.
1834 * Will always be reset to "disable mute" when a new voice call is initiated
1835 *
1836 * "data" is an int *
1837 * (int *)data)[0] is 1 for "enable mute" and 0 for "disable mute"
1838 *
1839 * "response" is NULL
1840 *
1841 * Valid errors:
1842 *  SUCCESS
1843 *  RADIO_NOT_AVAILABLE (radio resetting)
1844 *  GENERIC_FAILURE
1845 */
1846
1847#define RIL_REQUEST_SET_MUTE 53
1848
1849/**
1850 * RIL_REQUEST_GET_MUTE
1851 *
1852 * Queries the current state of the uplink mute setting
1853 *
1854 * "data" is NULL
1855 * "response" is an int *
1856 * (int *)response)[0] is 1 for "mute enabled" and 0 for "mute disabled"
1857 *
1858 * Valid errors:
1859 *  SUCCESS
1860 *  RADIO_NOT_AVAILABLE (radio resetting)
1861 *  GENERIC_FAILURE
1862 */
1863
1864#define RIL_REQUEST_GET_MUTE 54
1865
1866/**
1867 * RIL_REQUEST_QUERY_CLIP
1868 *
1869 * Queries the status of the CLIP supplementary service
1870 *
1871 * (for MMI code "*#30#")
1872 *
1873 * "data" is NULL
1874 * "response" is an int *
1875 * (int *)response)[0] is 1 for "CLIP provisioned"
1876 *                           and 0 for "CLIP not provisioned"
1877 *                           and 2 for "unknown, e.g. no network etc"
1878 *
1879 * Valid errors:
1880 *  SUCCESS
1881 *  RADIO_NOT_AVAILABLE (radio resetting)
1882 *  GENERIC_FAILURE
1883 */
1884
1885#define RIL_REQUEST_QUERY_CLIP 55
1886
1887/**
1888 * RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE
1889 *
1890 * Requests the failure cause code for the most recently failed PDP
1891 * context or CDMA data connection active
1892 * replaces RIL_REQUEST_LAST_PDP_FAIL_CAUSE
1893 *
1894 * "data" is NULL
1895 *
1896 * "response" is a "int *"
1897 * ((int *)response)[0] is an integer cause code defined in TS 24.008
1898 *   section 6.1.3.1.3 or close approximation
1899 *
1900 * If the implementation does not have access to the exact cause codes,
1901 * then it should return one of the values listed in
1902 * RIL_LastDataCallActivateFailCause, as the UI layer needs to distinguish these
1903 * cases for error notification
1904 * and potential retries.
1905 *
1906 * Valid errors:
1907 *  SUCCESS
1908 *  RADIO_NOT_AVAILABLE
1909 *  GENERIC_FAILURE
1910 *
1911 * See also: RIL_REQUEST_LAST_CALL_FAIL_CAUSE
1912 *
1913 */
1914
1915#define RIL_REQUEST_LAST_DATA_CALL_FAIL_CAUSE 56
1916
1917/**
1918 * RIL_REQUEST_DATA_CALL_LIST
1919 *
1920 * Queries the status of PDP contexts, returning for each
1921 * its CID, whether or not it is active, and its PDP type,
1922 * APN, and PDP adddress.
1923 * replaces RIL_REQUEST_PDP_CONTEXT_LIST
1924 *
1925 * "data" is NULL
1926 * "response" is an array of RIL_Data_Call_Response
1927 *
1928 * Valid errors:
1929 *  SUCCESS
1930 *  RADIO_NOT_AVAILABLE (radio resetting)
1931 *  GENERIC_FAILURE
1932 */
1933
1934#define RIL_REQUEST_DATA_CALL_LIST 57
1935
1936/**
1937 * RIL_REQUEST_RESET_RADIO - DEPRECATED
1938 *
1939 * Request a radio reset. The RIL implementation may postpone
1940 * the reset until after this request is responded to if the baseband
1941 * is presently busy.
1942 *
1943 * The request is DEPRECATED, use RIL_REQUEST_RADIO_POWER
1944 *
1945 * "data" is NULL
1946 * "response" is NULL
1947 *
1948 * Valid errors:
1949 *  SUCCESS
1950 *  RADIO_NOT_AVAILABLE (radio resetting)
1951 *  GENERIC_FAILURE
1952 *  REQUEST_NOT_SUPPORTED
1953 */
1954
1955#define RIL_REQUEST_RESET_RADIO 58
1956
1957/**
1958 * RIL_REQUEST_OEM_HOOK_RAW
1959 *
1960 * This request reserved for OEM-specific uses. It passes raw byte arrays
1961 * back and forth.
1962 *
1963 * It can be invoked on the Java side from
1964 * com.android.internal.telephony.Phone.invokeOemRilRequestRaw()
1965 *
1966 * "data" is a char * of bytes copied from the byte[] data argument in java
1967 * "response" is a char * of bytes that will returned via the
1968 * caller's "response" Message here:
1969 * (byte[])(((AsyncResult)response.obj).result)
1970 *
1971 * An error response here will result in
1972 * (((AsyncResult)response.obj).result) == null and
1973 * (((AsyncResult)response.obj).exception) being an instance of
1974 * com.android.internal.telephony.gsm.CommandException
1975 *
1976 * Valid errors:
1977 *  All
1978 */
1979
1980#define RIL_REQUEST_OEM_HOOK_RAW 59
1981
1982/**
1983 * RIL_REQUEST_OEM_HOOK_STRINGS
1984 *
1985 * This request reserved for OEM-specific uses. It passes strings
1986 * back and forth.
1987 *
1988 * It can be invoked on the Java side from
1989 * com.android.internal.telephony.Phone.invokeOemRilRequestStrings()
1990 *
1991 * "data" is a const char **, representing an array of null-terminated UTF-8
1992 * strings copied from the "String[] strings" argument to
1993 * invokeOemRilRequestStrings()
1994 *
1995 * "response" is a const char **, representing an array of null-terminated UTF-8
1996 * stings that will be returned via the caller's response message here:
1997 *
1998 * (String[])(((AsyncResult)response.obj).result)
1999 *
2000 * An error response here will result in
2001 * (((AsyncResult)response.obj).result) == null and
2002 * (((AsyncResult)response.obj).exception) being an instance of
2003 * com.android.internal.telephony.gsm.CommandException
2004 *
2005 * Valid errors:
2006 *  All
2007 */
2008
2009#define RIL_REQUEST_OEM_HOOK_STRINGS 60
2010
2011/**
2012 * RIL_REQUEST_SCREEN_STATE
2013 *
2014 * Indicates the current state of the screen.  When the screen is off, the
2015 * RIL should notify the baseband to suppress certain notifications (eg,
2016 * signal strength and changes in LAC/CID or BID/SID/NID/latitude/longitude)
2017 * in an effort to conserve power.  These notifications should resume when the
2018 * screen is on.
2019 *
2020 * "data" is int *
2021 * ((int *)data)[0] is == 1 for "Screen On"
2022 * ((int *)data)[0] is == 0 for "Screen Off"
2023 *
2024 * "response" is NULL
2025 *
2026 * Valid errors:
2027 *  SUCCESS
2028 *  GENERIC_FAILURE
2029 */
2030#define RIL_REQUEST_SCREEN_STATE 61
2031
2032
2033/**
2034 * RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION
2035 *
2036 * Enables/disables supplementary service related notifications
2037 * from the network.
2038 *
2039 * Notifications are reported via RIL_UNSOL_SUPP_SVC_NOTIFICATION.
2040 *
2041 * "data" is int *
2042 * ((int *)data)[0] is == 1 for notifications enabled
2043 * ((int *)data)[0] is == 0 for notifications disabled
2044 *
2045 * "response" is NULL
2046 *
2047 * Valid errors:
2048 *  SUCCESS
2049 *  RADIO_NOT_AVAILABLE
2050 *  GENERIC_FAILURE
2051 *
2052 * See also: RIL_UNSOL_SUPP_SVC_NOTIFICATION.
2053 */
2054#define RIL_REQUEST_SET_SUPP_SVC_NOTIFICATION 62
2055
2056/**
2057 * RIL_REQUEST_WRITE_SMS_TO_SIM
2058 *
2059 * Stores a SMS message to SIM memory.
2060 *
2061 * "data" is RIL_SMS_WriteArgs *
2062 *
2063 * "response" is int *
2064 * ((const int *)response)[0] is the record index where the message is stored.
2065 *
2066 * Valid errors:
2067 *  SUCCESS
2068 *  GENERIC_FAILURE
2069 *
2070 */
2071#define RIL_REQUEST_WRITE_SMS_TO_SIM 63
2072
2073/**
2074 * RIL_REQUEST_DELETE_SMS_ON_SIM
2075 *
2076 * Deletes a SMS message from SIM memory.
2077 *
2078 * "data" is int  *
2079 * ((int *)data)[0] is the record index of the message to delete.
2080 *
2081 * "response" is NULL
2082 *
2083 * Valid errors:
2084 *  SUCCESS
2085 *  GENERIC_FAILURE
2086 *
2087 */
2088#define RIL_REQUEST_DELETE_SMS_ON_SIM 64
2089
2090/**
2091 * RIL_REQUEST_SET_BAND_MODE
2092 *
2093 * Assign a specified band for RF configuration.
2094 *
2095 * "data" is int *
2096 * ((int *)data)[0] is == 0 for "unspecified" (selected by baseband automatically)
2097 * ((int *)data)[0] is == 1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
2098 * ((int *)data)[0] is == 2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
2099 * ((int *)data)[0] is == 3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
2100 * ((int *)data)[0] is == 4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
2101 * ((int *)data)[0] is == 5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
2102 * ((int *)data)[0] is == 6 for "Cellular (800-MHz Band)"
2103 * ((int *)data)[0] is == 7 for "PCS (1900-MHz Band)"
2104 * ((int *)data)[0] is == 8 for "Band Class 3 (JTACS Band)"
2105 * ((int *)data)[0] is == 9 for "Band Class 4 (Korean PCS Band)"
2106 * ((int *)data)[0] is == 10 for "Band Class 5 (450-MHz Band)"
2107 * ((int *)data)[0] is == 11 for "Band Class 6 (2-GMHz IMT2000 Band)"
2108 * ((int *)data)[0] is == 12 for "Band Class 7 (Upper 700-MHz Band)"
2109 * ((int *)data)[0] is == 13 for "Band Class 8 (1800-MHz Band)"
2110 * ((int *)data)[0] is == 14 for "Band Class 9 (900-MHz Band)"
2111 * ((int *)data)[0] is == 15 for "Band Class 10 (Secondary 800-MHz Band)"
2112 * ((int *)data)[0] is == 16 for "Band Class 11 (400-MHz European PAMR Band)"
2113 * ((int *)data)[0] is == 17 for "Band Class 15 (AWS Band)"
2114 * ((int *)data)[0] is == 18 for "Band Class 16 (US 2.5-GHz Band)"
2115 *
2116 * "response" is NULL
2117 *
2118 * Valid errors:
2119 *  SUCCESS
2120 *  RADIO_NOT_AVAILABLE
2121 *  GENERIC_FAILURE
2122 */
2123#define RIL_REQUEST_SET_BAND_MODE 65
2124
2125/**
2126 * RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE
2127 *
2128 * Query the list of band mode supported by RF.
2129 *
2130 * "data" is NULL
2131 *
2132 * "response" is int *
2133 * "response" points to an array of int's, the int[0] is the size of array, reset is one for
2134 * each available band mode.
2135 *
2136 *  0 for "unspecified" (selected by baseband automatically)
2137 *  1 for "EURO band" (GSM-900 / DCS-1800 / WCDMA-IMT-2000)
2138 *  2 for "US band" (GSM-850 / PCS-1900 / WCDMA-850 / WCDMA-PCS-1900)
2139 *  3 for "JPN band" (WCDMA-800 / WCDMA-IMT-2000)
2140 *  4 for "AUS band" (GSM-900 / DCS-1800 / WCDMA-850 / WCDMA-IMT-2000)
2141 *  5 for "AUS band 2" (GSM-900 / DCS-1800 / WCDMA-850)
2142 *  6 for "Cellular (800-MHz Band)"
2143 *  7 for "PCS (1900-MHz Band)"
2144 *  8 for "Band Class 3 (JTACS Band)"
2145 *  9 for "Band Class 4 (Korean PCS Band)"
2146 *  10 for "Band Class 5 (450-MHz Band)"
2147 *  11 for "Band Class 6 (2-GMHz IMT2000 Band)"
2148 *  12 for "Band Class 7 (Upper 700-MHz Band)"
2149 *  13 for "Band Class 8 (1800-MHz Band)"
2150 *  14 for "Band Class 9 (900-MHz Band)"
2151 *  15 for "Band Class 10 (Secondary 800-MHz Band)"
2152 *  16 for "Band Class 11 (400-MHz European PAMR Band)"
2153 *  17 for "Band Class 15 (AWS Band)"
2154 *  18 for "Band Class 16 (US 2.5-GHz Band)"
2155 *
2156 * Valid errors:
2157 *  SUCCESS
2158 *  RADIO_NOT_AVAILABLE
2159 *  GENERIC_FAILURE
2160 *
2161 * See also: RIL_REQUEST_SET_BAND_MODE
2162 */
2163#define RIL_REQUEST_QUERY_AVAILABLE_BAND_MODE 66
2164
2165/**
2166 * RIL_REQUEST_STK_GET_PROFILE
2167 *
2168 * Requests the profile of SIM tool kit.
2169 * The profile indicates the SAT/USAT features supported by ME.
2170 * The SAT/USAT features refer to 3GPP TS 11.14 and 3GPP TS 31.111
2171 *
2172 * "data" is NULL
2173 *
2174 * "response" is a const char * containing SAT/USAT profile
2175 * in hexadecimal format string starting with first byte of terminal profile
2176 *
2177 * Valid errors:
2178 *  RIL_E_SUCCESS
2179 *  RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2180 *  RIL_E_GENERIC_FAILURE
2181 */
2182#define RIL_REQUEST_STK_GET_PROFILE 67
2183
2184/**
2185 * RIL_REQUEST_STK_SET_PROFILE
2186 *
2187 * Download the STK terminal profile as part of SIM initialization
2188 * procedure
2189 *
2190 * "data" is a const char * containing SAT/USAT profile
2191 * in hexadecimal format string starting with first byte of terminal profile
2192 *
2193 * "response" is NULL
2194 *
2195 * Valid errors:
2196 *  RIL_E_SUCCESS
2197 *  RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2198 *  RIL_E_GENERIC_FAILURE
2199 */
2200#define RIL_REQUEST_STK_SET_PROFILE 68
2201
2202/**
2203 * RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND
2204 *
2205 * Requests to send a SAT/USAT envelope command to SIM.
2206 * The SAT/USAT envelope command refers to 3GPP TS 11.14 and 3GPP TS 31.111
2207 *
2208 * "data" is a const char * containing SAT/USAT command
2209 * in hexadecimal format string starting with command tag
2210 *
2211 * "response" is a const char * containing SAT/USAT response
2212 * in hexadecimal format string starting with first byte of response
2213 * (May be NULL)
2214 *
2215 * Valid errors:
2216 *  RIL_E_SUCCESS
2217 *  RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2218 *  RIL_E_GENERIC_FAILURE
2219 */
2220#define RIL_REQUEST_STK_SEND_ENVELOPE_COMMAND 69
2221
2222/**
2223 * RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE
2224 *
2225 * Requests to send a terminal response to SIM for a received
2226 * proactive command
2227 *
2228 * "data" is a const char * containing SAT/USAT response
2229 * in hexadecimal format string starting with first byte of response data
2230 *
2231 * "response" is NULL
2232 *
2233 * Valid errors:
2234 *  RIL_E_SUCCESS
2235 *  RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2236 *  RIL_E_GENERIC_FAILURE
2237 */
2238#define RIL_REQUEST_STK_SEND_TERMINAL_RESPONSE 70
2239
2240/**
2241 * RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM
2242 *
2243 * When STK application gets RIL_UNSOL_STK_CALL_SETUP, the call actually has
2244 * been initialized by ME already. (We could see the call has been in the 'call
2245 * list') So, STK application needs to accept/reject the call according as user
2246 * operations.
2247 *
2248 * "data" is int *
2249 * ((int *)data)[0] is > 0 for "accept" the call setup
2250 * ((int *)data)[0] is == 0 for "reject" the call setup
2251 *
2252 * "response" is NULL
2253 *
2254 * Valid errors:
2255 *  RIL_E_SUCCESS
2256 *  RIL_E_RADIO_NOT_AVAILABLE (radio resetting)
2257 *  RIL_E_GENERIC_FAILURE
2258 */
2259#define RIL_REQUEST_STK_HANDLE_CALL_SETUP_REQUESTED_FROM_SIM 71
2260
2261/**
2262 * RIL_REQUEST_EXPLICIT_CALL_TRANSFER
2263 *
2264 * Connects the two calls and disconnects the subscriber from both calls.
2265 *
2266 * "data" is NULL
2267 * "response" is NULL
2268 *
2269 * Valid errors:
2270 *  SUCCESS
2271 *  RADIO_NOT_AVAILABLE (radio resetting)
2272 *  GENERIC_FAILURE
2273 */
2274#define RIL_REQUEST_EXPLICIT_CALL_TRANSFER 72
2275
2276/**
2277 * RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
2278 *
2279 * Requests to set the preferred network type for searching and registering
2280 * (CS/PS domain, RAT, and operation mode)
2281 *
2282 * "data" is int *
2283 *
2284 * ((int *)data)[0] is == 0 for GSM/WCDMA (WCDMA preferred)
2285 * ((int *)data)[0] is == 1 for GSM only
2286 * ((int *)data)[0] is == 2 for WCDMA only
2287 * ((int *)data)[0] is == 3 for GSM/WCDMA (auto mode, according to PRL)
2288 * ((int *)data)[0] is == 4 for CDMA and EvDo (auto mode, according to PRL)
2289 * ((int *)data)[0] is == 5 for CDMA only
2290 * ((int *)data)[0] is == 6 for EvDo only
2291 * ((int *)data)[0] is == 7 for GSM/WCDMA, CDMA, and EvDo (auto mode, according to PRL)
2292 *
2293 * "response" is NULL
2294 *
2295 * Valid errors:
2296 *  SUCCESS
2297 *  RADIO_NOT_AVAILABLE (radio resetting)
2298 *  GENERIC_FAILURE
2299 *  MODE_NOT_SUPPORTED
2300 */
2301#define RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE 73
2302
2303/**
2304 * RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE
2305 *
2306 * Query the preferred network type (CS/PS domain, RAT, and operation mode)
2307 * for searching and registering
2308 *
2309 * "data" is NULL
2310 *
2311 * "response" is int *
2312 * ((int *)response)[0] is == 0 for GSM/WCDMA (WCDMA preferred)
2313 * ((int *)response)[0] is == 1 for GSM only
2314 * ((int *)response)[0] is == 2 for WCDMA only
2315 * ((int *)response)[0] is == 3 for GSM/WCDMA (auto mode, according to PRL)
2316 * ((int *)response)[0] is == 4 for CDMA and EvDo (auto mode, according to PRL)
2317 * ((int *)response)[0] is == 5 for CDMA only
2318 * ((int *)response)[0] is == 6 for EvDo only
2319 * ((int *)response)[0] is == 7 for GSM/WCDMA, CDMA, and EvDo (auto mode, according to PRL)
2320 *
2321 * Valid errors:
2322 *  SUCCESS
2323 *  RADIO_NOT_AVAILABLE
2324 *  GENERIC_FAILURE
2325 *
2326 * See also: RIL_REQUEST_SET_PREFERRED_NETWORK_TYPE
2327 */
2328#define RIL_REQUEST_GET_PREFERRED_NETWORK_TYPE 74
2329
2330/**
2331 * RIL_REQUEST_NEIGHBORING_CELL_IDS
2332 *
2333 * Request neighboring cell id in GSM network
2334 *
2335 * "data" is NULL
2336 * "response" must be a " const RIL_NeighboringCell** "
2337 *
2338 * Valid errors:
2339 *  SUCCESS
2340 *  RADIO_NOT_AVAILABLE
2341 *  GENERIC_FAILURE
2342 */
2343#define RIL_REQUEST_GET_NEIGHBORING_CELL_IDS 75
2344
2345/**
2346 * RIL_REQUEST_SET_LOCATION_UPDATES
2347 *
2348 * Enables/disables network state change notifications due to changes in
2349 * LAC and/or CID (for GSM) or BID/SID/NID/latitude/longitude (for CDMA).
2350 * Basically +CREG=2 vs. +CREG=1 (TS 27.007).
2351 *
2352 * Note:  The RIL implementation should default to "updates enabled"
2353 * when the screen is on and "updates disabled" when the screen is off.
2354 *
2355 * "data" is int *
2356 * ((int *)data)[0] is == 1 for updates enabled (+CREG=2)
2357 * ((int *)data)[0] is == 0 for updates disabled (+CREG=1)
2358 *
2359 * "response" is NULL
2360 *
2361 * Valid errors:
2362 *  SUCCESS
2363 *  RADIO_NOT_AVAILABLE
2364 *  GENERIC_FAILURE
2365 *
2366 * See also: RIL_REQUEST_SCREEN_STATE, RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED
2367 */
2368#define RIL_REQUEST_SET_LOCATION_UPDATES 76
2369
2370/**
2371 * RIL_REQUEST_CDMA_SET_SUBSCRIPTION
2372 *
2373 * Request to set the location where the CDMA subscription shall
2374 * be retrieved
2375 *
2376 * "data" is int *
2377 * ((int *)data)[0] is == 0 from RUIM/SIM (default)
2378 * ((int *)data)[0] is == 1 from NV
2379 *
2380 * "response" is NULL
2381 *
2382 * Valid errors:
2383 *  SUCCESS
2384 *  RADIO_NOT_AVAILABLE
2385 *  GENERIC_FAILURE
2386 *  SIM_ABSENT
2387 *  SUBSCRIPTION_NOT_AVAILABLE
2388 */
2389#define RIL_REQUEST_CDMA_SET_SUBSCRIPTION 77
2390
2391/**
2392 * RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE
2393 *
2394 * Request to set the roaming preferences in CDMA
2395 *
2396 * "data" is int *
2397 * ((int *)data)[0] is == 0 for Home Networks only, as defined in PRL
2398 * ((int *)data)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
2399 * ((int *)data)[0] is == 2 for Roaming on Any Network, as defined in the PRL
2400 *
2401 * "response" is NULL
2402 *
2403 * Valid errors:
2404 *  SUCCESS
2405 *  RADIO_NOT_AVAILABLE
2406 *  GENERIC_FAILURE
2407 */
2408#define RIL_REQUEST_CDMA_SET_ROAMING_PREFERENCE 78
2409
2410/**
2411 * RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE
2412 *
2413 * Request the actual setting of the roaming preferences in CDMA in the modem
2414 *
2415 * "data" is NULL
2416 *
2417 * "response" is int *
2418 * ((int *)response)[0] is == 0 for Home Networks only, as defined in PRL
2419 * ((int *)response)[0] is == 1 for Roaming on Affiliated networks, as defined in PRL
2420 * ((int *)response)[0] is == 2 for Roaming on Any Network, as defined in the PRL
2421 *
2422 * "response" is NULL
2423 *
2424 * Valid errors:
2425 *  SUCCESS
2426 *  RADIO_NOT_AVAILABLE
2427 *  GENERIC_FAILURE
2428 */
2429#define RIL_REQUEST_CDMA_QUERY_ROAMING_PREFERENCE 79
2430
2431/**
2432 * RIL_REQUEST_SET_TTY_MODE
2433 *
2434 * Request to set the TTY mode
2435 *
2436 * "data" is int *
2437 * ((int *)data)[0] is == 0 for TTY off
2438 * ((int *)data)[0] is == 1 for TTY Full
2439 * ((int *)data)[0] is == 2 for TTY HCO (hearing carryover)
2440 * ((int *)data)[0] is == 3 for TTY VCO (voice carryover)
2441 *
2442 * "response" is NULL
2443 *
2444 * Valid errors:
2445 *  SUCCESS
2446 *  RADIO_NOT_AVAILABLE
2447 *  GENERIC_FAILURE
2448 */
2449#define RIL_REQUEST_SET_TTY_MODE 80
2450
2451/**
2452 * RIL_REQUEST_QUERY_TTY_MODE
2453 *
2454 * Request the setting of TTY mode
2455 *
2456 * "data" is NULL
2457 *
2458 * "response" is int *
2459 * ((int *)response)[0] is == 0 for TTY off
2460 * ((int *)response)[0] is == 1 for TTY Full
2461 * ((int *)response)[0] is == 2 for TTY HCO (hearing carryover)
2462 * ((int *)response)[0] is == 3 for TTY VCO (voice carryover)
2463 *
2464 * "response" is NULL
2465 *
2466 * Valid errors:
2467 *  SUCCESS
2468 *  RADIO_NOT_AVAILABLE
2469 *  GENERIC_FAILURE
2470 */
2471#define RIL_REQUEST_QUERY_TTY_MODE 81
2472
2473/**
2474 * RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE
2475 *
2476 * Request to set the preferred voice privacy mode used in voice
2477 * scrambling
2478 *
2479 * "data" is int *
2480 * ((int *)data)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
2481 * ((int *)data)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
2482 *
2483 * "response" is NULL
2484 *
2485 * Valid errors:
2486 *  SUCCESS
2487 *  RADIO_NOT_AVAILABLE
2488 *  GENERIC_FAILURE
2489 */
2490#define RIL_REQUEST_CDMA_SET_PREFERRED_VOICE_PRIVACY_MODE 82
2491
2492/**
2493 * RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE
2494 *
2495 * Request the setting of preferred voice privacy mode
2496 *
2497 * "data" is NULL
2498 *
2499 * "response" is int *
2500 * ((int *)response)[0] is == 0 for Standard Privacy Mode (Public Long Code Mask)
2501 * ((int *)response)[0] is == 1 for Enhanced Privacy Mode (Private Long Code Mask)
2502 *
2503 * "response" is NULL
2504 *
2505 * Valid errors:
2506 *  SUCCESS
2507 *  RADIO_NOT_AVAILABLE
2508 *  GENERIC_FAILURE
2509 */
2510#define RIL_REQUEST_CDMA_QUERY_PREFERRED_VOICE_PRIVACY_MODE 83
2511
2512/**
2513 * RIL_REQUEST_CDMA_FLASH
2514 *
2515 * Send FLASH
2516 *
2517 * "data" is const char *
2518 * ((const char *)data)[0] is a FLASH string
2519 *
2520 * "response" is NULL
2521 *
2522 * Valid errors:
2523 *  SUCCESS
2524 *  RADIO_NOT_AVAILABLE
2525 *  GENERIC_FAILURE
2526 *
2527 */
2528#define RIL_REQUEST_CDMA_FLASH 84
2529
2530/**
2531 * RIL_REQUEST_CDMA_BURST_DTMF
2532 *
2533 * Send DTMF string
2534 *
2535 * "data" is const char **
2536 * ((const char **)data)[0] is a DTMF string
2537 * ((const char **)data)[1] is the DTMF ON length in milliseconds, or 0 to use
2538 *                          default
2539 * ((const char **)data)[2] is the DTMF OFF length in milliseconds, or 0 to use
2540 *                          default
2541 *
2542 * "response" is NULL
2543 *
2544 * Valid errors:
2545 *  SUCCESS
2546 *  RADIO_NOT_AVAILABLE
2547 *  GENERIC_FAILURE
2548 *
2549 */
2550#define RIL_REQUEST_CDMA_BURST_DTMF 85
2551
2552/**
2553 * RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY
2554 *
2555 * Takes a 26 digit string (20 digit AKEY + 6 digit checksum).
2556 * If the checksum is valid the 20 digit AKEY is written to NV,
2557 * replacing the existing AKEY no matter what it was before.
2558 *
2559 * "data" is const char *
2560 * ((const char *)data)[0] is a 26 digit string (ASCII digits '0'-'9')
2561 *                         where the last 6 digits are a checksum of the
2562 *                         first 20, as specified in TR45.AHAG
2563 *                         "Common Cryptographic Algorithms, Revision D.1
2564 *                         Section 2.2"
2565 *
2566 * "response" is NULL
2567 *
2568 * Valid errors:
2569 *  SUCCESS
2570 *  RADIO_NOT_AVAILABLE
2571 *  GENERIC_FAILURE
2572 *
2573 */
2574#define RIL_REQUEST_CDMA_VALIDATE_AND_WRITE_AKEY 86
2575
2576/**
2577 * RIL_REQUEST_CDMA_SEND_SMS
2578 *
2579 * Send a CDMA SMS message
2580 *
2581 * "data" is const RIL_CDMA_SMS_Message *
2582 *
2583 * "response" is a const RIL_SMS_Response *
2584 *
2585 * Based on the return error, caller decides to resend if sending sms
2586 * fails. The CDMA error class is derived as follows,
2587 * SUCCESS is error class 0 (no error)
2588 * SMS_SEND_FAIL_RETRY is error class 2 (temporary failure)
2589 * and GENERIC_FAILURE is error class 3 (permanent and no retry)
2590 *
2591 * Valid errors:
2592 *  SUCCESS
2593 *  RADIO_NOT_AVAILABLE
2594 *  SMS_SEND_FAIL_RETRY
2595 *  GENERIC_FAILURE
2596 *
2597 */
2598#define RIL_REQUEST_CDMA_SEND_SMS 87
2599
2600/**
2601 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
2602 *
2603 * Acknowledge the success or failure in the receipt of SMS
2604 * previously indicated via RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
2605 *
2606 * "data" is const RIL_CDMA_SMS_Ack *
2607 *
2608 * "response" is NULL
2609 *
2610 * Valid errors:
2611 *  SUCCESS
2612 *  RADIO_NOT_AVAILABLE
2613 *  GENERIC_FAILURE
2614 *
2615 */
2616#define RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE 88
2617
2618/**
2619 * RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG
2620 *
2621 * Request the setting of GSM/WCDMA Cell Broadcast SMS config.
2622 *
2623 * "data" is NULL
2624 *
2625 * "response" is a const RIL_GSM_BroadcastSmsConfigInfo **
2626 * "responselen" is count * sizeof (RIL_GSM_BroadcastSmsConfigInfo *)
2627 *
2628 * Valid errors:
2629 *  SUCCESS
2630 *  RADIO_NOT_AVAILABLE
2631 *  GENERIC_FAILURE
2632 *
2633 */
2634#define RIL_REQUEST_GSM_GET_BROADCAST_SMS_CONFIG 89
2635
2636/**
2637 * RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG
2638 *
2639 * Set GSM/WCDMA Cell Broadcast SMS config
2640 *
2641 * "data" is a const RIL_GSM_BroadcastSmsConfigInfo **
2642 * "datalen" is count * sizeof(RIL_GSM_BroadcastSmsConfigInfo *)
2643 *
2644 * "response" is NULL
2645 *
2646 * Valid errors:
2647 *  SUCCESS
2648 *  RADIO_NOT_AVAILABLE
2649 *  GENERIC_FAILURE
2650 *
2651 */
2652#define RIL_REQUEST_GSM_SET_BROADCAST_SMS_CONFIG 90
2653
2654/**
2655 * RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION
2656 *
2657* Enable or disable the reception of GSM/WCDMA Cell Broadcast SMS
2658 *
2659 * "data" is const int *
2660 * (const int *)data[0] indicates to activate or turn off the
2661 * reception of GSM/WCDMA Cell Broadcast SMS, 0-1,
2662 *                       0 - Activate, 1 - Turn off
2663 *
2664 * "response" is NULL
2665 *
2666 * Valid errors:
2667 *  SUCCESS
2668 *  RADIO_NOT_AVAILABLE
2669 *  GENERIC_FAILURE
2670 *
2671 */
2672#define RIL_REQUEST_GSM_SMS_BROADCAST_ACTIVATION 91
2673
2674/**
2675 * RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG
2676 *
2677 * Request the setting of CDMA Broadcast SMS config
2678 *
2679 * "data" is NULL
2680 *
2681 * "response" is a const RIL_CDMA_BroadcastSmsConfigInfo **
2682 * "responselen" is count * sizeof (RIL_CDMA_BroadcastSmsConfigInfo *)
2683 *
2684 * Valid errors:
2685 *  SUCCESS
2686 *  RADIO_NOT_AVAILABLE
2687 *  GENERIC_FAILURE
2688 *
2689 */
2690#define RIL_REQUEST_CDMA_GET_BROADCAST_SMS_CONFIG 92
2691
2692/**
2693 * RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG
2694 *
2695 * Set CDMA Broadcast SMS config
2696 *
2697 * "data" is an const RIL_CDMA_BroadcastSmsConfigInfo **
2698 * "datalen" is count * sizeof(const RIL_CDMA_BroadcastSmsConfigInfo *)
2699 *
2700 * "response" is NULL
2701 *
2702 * Valid errors:
2703 *  SUCCESS
2704 *  RADIO_NOT_AVAILABLE
2705 *  GENERIC_FAILURE
2706 *
2707 */
2708#define RIL_REQUEST_CDMA_SET_BROADCAST_SMS_CONFIG 93
2709
2710/**
2711 * RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION
2712 *
2713 * Enable or disable the reception of CDMA Broadcast SMS
2714 *
2715 * "data" is const int *
2716 * (const int *)data[0] indicates to activate or turn off the
2717 * reception of CDMA Broadcast SMS, 0-1,
2718 *                       0 - Activate, 1 - Turn off
2719 *
2720 * "response" is NULL
2721 *
2722 * Valid errors:
2723 *  SUCCESS
2724 *  RADIO_NOT_AVAILABLE
2725 *  GENERIC_FAILURE
2726 *
2727 */
2728#define RIL_REQUEST_CDMA_SMS_BROADCAST_ACTIVATION 94
2729
2730/**
2731 * RIL_REQUEST_CDMA_SUBSCRIPTION
2732 *
2733 * Request the device MDN / H_SID / H_NID.
2734 *
2735 * The request is only allowed when CDMA subscription is available.  When CDMA
2736 * subscription is changed, application layer should re-issue the request to
2737 * update the subscription information.
2738 *
2739 * If a NULL value is returned for any of the device id, it means that error
2740 * accessing the device.
2741 *
2742 * "response" is const char **
2743 * ((const char **)response)[0] is MDN if CDMA subscription is available
2744 * ((const char **)response)[1] is a comma separated list of H_SID (Home SID) if
2745 *                              CDMA subscription is available, in decimal format
2746 * ((const char **)response)[2] is a comma separated list of H_NID (Home NID) if
2747 *                              CDMA subscription is available, in decimal format
2748 * ((const char **)response)[3] is MIN (10 digits, MIN2+MIN1) if CDMA subscription is available
2749 * ((const char **)response)[4] is PRL version if CDMA subscription is available
2750 *
2751 * Valid errors:
2752 *  SUCCESS
2753 *  RIL_E_SUBSCRIPTION_NOT_AVAILABLE
2754 */
2755
2756#define RIL_REQUEST_CDMA_SUBSCRIPTION 95
2757
2758/**
2759 * RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM
2760 *
2761 * Stores a CDMA SMS message to RUIM memory.
2762 *
2763 * "data" is RIL_CDMA_SMS_WriteArgs *
2764 *
2765 * "response" is int *
2766 * ((const int *)response)[0] is the record index where the message is stored.
2767 *
2768 * Valid errors:
2769 *  SUCCESS
2770 *  RADIO_NOT_AVAILABLE
2771 *  GENERIC_FAILURE
2772 *
2773 */
2774#define RIL_REQUEST_CDMA_WRITE_SMS_TO_RUIM 96
2775
2776/**
2777 * RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM
2778 *
2779 * Deletes a CDMA SMS message from RUIM memory.
2780 *
2781 * "data" is int  *
2782 * ((int *)data)[0] is the record index of the message to delete.
2783 *
2784 * "response" is NULL
2785 *
2786 * Valid errors:
2787 *  SUCCESS
2788 *  RADIO_NOT_AVAILABLE
2789 *  GENERIC_FAILURE
2790 *
2791 */
2792#define RIL_REQUEST_CDMA_DELETE_SMS_ON_RUIM 97
2793
2794/**
2795 * RIL_REQUEST_DEVICE_IDENTITY
2796 *
2797 * Request the device ESN / MEID / IMEI / IMEISV.
2798 *
2799 * The request is always allowed and contains GSM and CDMA device identity;
2800 * it substitutes the deprecated requests RIL_REQUEST_GET_IMEI and
2801 * RIL_REQUEST_GET_IMEISV.
2802 *
2803 * If a NULL value is returned for any of the device id, it means that error
2804 * accessing the device.
2805 *
2806 * When CDMA subscription is changed the ESN/MEID may change.  The application
2807 * layer should re-issue the request to update the device identity in this case.
2808 *
2809 * "response" is const char **
2810 * ((const char **)response)[0] is IMEI if GSM subscription is available
2811 * ((const char **)response)[1] is IMEISV if GSM subscription is available
2812 * ((const char **)response)[2] is ESN if CDMA subscription is available
2813 * ((const char **)response)[3] is MEID if CDMA subscription is available
2814 *
2815 * Valid errors:
2816 *  SUCCESS
2817 *  RADIO_NOT_AVAILABLE
2818 *  GENERIC_FAILURE
2819 */
2820#define RIL_REQUEST_DEVICE_IDENTITY 98
2821
2822/**
2823 * RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE
2824 *
2825 * Request the radio's system selection module to exit emergency
2826 * callback mode.  RIL will not respond with SUCCESS until the modem has
2827 * completely exited from Emergency Callback Mode.
2828 *
2829 * "data" is NULL
2830 *
2831 * "response" is NULL
2832 *
2833 * Valid errors:
2834 *  SUCCESS
2835 *  RADIO_NOT_AVAILABLE
2836 *  GENERIC_FAILURE
2837 *
2838 */
2839#define RIL_REQUEST_EXIT_EMERGENCY_CALLBACK_MODE 99
2840
2841/**
2842 * RIL_REQUEST_GET_SMSC_ADDRESS
2843 *
2844 * Queries the default Short Message Service Center address on the device.
2845 *
2846 * "data" is NULL
2847 *
2848 * "response" is const char * containing the SMSC address.
2849 *
2850 * Valid errors:
2851 *  SUCCESS
2852 *  RADIO_NOT_AVAILABLE
2853 *  GENERIC_FAILURE
2854 *
2855 */
2856#define RIL_REQUEST_GET_SMSC_ADDRESS 100
2857
2858/**
2859 * RIL_REQUEST_SET_SMSC_ADDRESS
2860 *
2861 * Sets the default Short Message Service Center address on the device.
2862 *
2863 * "data" is const char * containing the SMSC address.
2864 *
2865 * "response" is NULL
2866 *
2867 * Valid errors:
2868 *  SUCCESS
2869 *  RADIO_NOT_AVAILABLE
2870 *  GENERIC_FAILURE
2871 *
2872 */
2873#define RIL_REQUEST_SET_SMSC_ADDRESS 101
2874
2875/**
2876 * RIL_REQUEST_REPORT_SMS_MEMORY_STATUS
2877 *
2878 * Indicates whether there is storage available for new SMS messages.
2879 *
2880 * "data" is int *
2881 * ((int *)data)[0] is 1 if memory is available for storing new messages
2882 *                  is 0 if memory capacity is exceeded
2883 *
2884 * "response" is NULL
2885 *
2886 * Valid errors:
2887 *  SUCCESS
2888 *  RADIO_NOT_AVAILABLE
2889 *  GENERIC_FAILURE
2890 *
2891 */
2892#define RIL_REQUEST_REPORT_SMS_MEMORY_STATUS 102
2893
2894/**
2895 * RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING
2896 *
2897 * Indicates that the StkSerivce is running and is
2898 * ready to receive RIL_UNSOL_STK_XXXXX commands.
2899 *
2900 * "data" is NULL
2901 * "response" is NULL
2902 *
2903 * Valid errors:
2904 *  SUCCESS
2905 *  RADIO_NOT_AVAILABLE
2906 *  GENERIC_FAILURE
2907 *
2908 */
2909#define RIL_REQUEST_REPORT_STK_SERVICE_IS_RUNNING 103
2910
2911
2912/***********************************************************************/
2913
2914
2915#define RIL_UNSOL_RESPONSE_BASE 1000
2916
2917/**
2918 * RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED
2919 *
2920 * Indicate when value of RIL_RadioState has changed.
2921 *
2922 * Callee will invoke RIL_RadioStateRequest method on main thread
2923 *
2924 * "data" is NULL
2925 */
2926
2927#define RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED 1000
2928
2929
2930/**
2931 * RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED
2932 *
2933 * Indicate when call state has changed
2934 *
2935 * Callee will invoke RIL_REQUEST_GET_CURRENT_CALLS on main thread
2936 *
2937 * "data" is NULL
2938 *
2939 * Response should be invoked on, for example,
2940 * "RING", "BUSY", "NO CARRIER", and also call state
2941 * transitions (DIALING->ALERTING ALERTING->ACTIVE)
2942 *
2943 * Redundent or extraneous invocations are tolerated
2944 */
2945#define RIL_UNSOL_RESPONSE_CALL_STATE_CHANGED 1001
2946
2947
2948/**
2949 * RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED
2950 *
2951 * Called when network state, operator name, or GPRS state has changed
2952 * Basically on, +CREG and +CGREG
2953 *
2954 * Callee will invoke the following requests on main thread:
2955 *
2956 * RIL_REQUEST_REGISTRATION_STATE
2957 * RIL_REQUEST_GPRS_REGISTRATION_STATE
2958 * RIL_REQUEST_OPERATOR
2959 *
2960 * "data" is NULL
2961 *
2962 * FIXME should this happen when SIM records are loaded? (eg, for
2963 * EONS)
2964 */
2965#define RIL_UNSOL_RESPONSE_NETWORK_STATE_CHANGED 1002
2966
2967/**
2968 * RIL_UNSOL_RESPONSE_NEW_SMS
2969 *
2970 * Called when new SMS is received.
2971 *
2972 * "data" is const char *
2973 * This is a pointer to a string containing the PDU of an SMS-DELIVER
2974 * as an ascii string of hex digits. The PDU starts with the SMSC address
2975 * per TS 27.005 (+CMT:)
2976 *
2977 * Callee will subsequently confirm the receipt of thei SMS with a
2978 * RIL_REQUEST_SMS_ACKNOWLEDGE
2979 *
2980 * No new RIL_UNSOL_RESPONSE_NEW_SMS
2981 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
2982 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
2983 */
2984
2985#define RIL_UNSOL_RESPONSE_NEW_SMS 1003
2986
2987/**
2988 * RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT
2989 *
2990 * Called when new SMS Status Report is received.
2991 *
2992 * "data" is const char *
2993 * This is a pointer to a string containing the PDU of an SMS-STATUS-REPORT
2994 * as an ascii string of hex digits. The PDU starts with the SMSC address
2995 * per TS 27.005 (+CDS:).
2996 *
2997 * Callee will subsequently confirm the receipt of the SMS with a
2998 * RIL_REQUEST_SMS_ACKNOWLEDGE
2999 *
3000 * No new RIL_UNSOL_RESPONSE_NEW_SMS
3001 * or RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT messages should be sent until a
3002 * RIL_REQUEST_SMS_ACKNOWLEDGE has been received
3003 */
3004
3005#define RIL_UNSOL_RESPONSE_NEW_SMS_STATUS_REPORT 1004
3006
3007/**
3008 * RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM
3009 *
3010 * Called when new SMS has been stored on SIM card
3011 *
3012 * "data" is const int *
3013 * ((const int *)data)[0] contains the slot index on the SIM that contains
3014 * the new message
3015 */
3016
3017#define RIL_UNSOL_RESPONSE_NEW_SMS_ON_SIM 1005
3018
3019/**
3020 * RIL_UNSOL_ON_USSD
3021 *
3022 * Called when a new USSD message is received.
3023 *
3024 * "data" is const char **
3025 * ((const char **)data)[0] points to a type code, which is
3026 *  one of these string values:
3027 *      "0"   USSD-Notify -- text in ((const char **)data)[1]
3028 *      "1"   USSD-Request -- text in ((const char **)data)[1]
3029 *      "2"   Session terminated by network
3030 *      "3"   other local client (eg, SIM Toolkit) has responded
3031 *      "4"   Operation not supported
3032 *      "5"   Network timeout
3033 *
3034 * The USSD session is assumed to persist if the type code is "1", otherwise
3035 * the current session (if any) is assumed to have terminated.
3036 *
3037 * ((const char **)data)[1] points to a message string if applicable, which
3038 * should always be in UTF-8.
3039 */
3040#define RIL_UNSOL_ON_USSD 1006
3041/* Previously #define RIL_UNSOL_ON_USSD_NOTIFY 1006   */
3042
3043/**
3044 * RIL_UNSOL_ON_USSD_REQUEST
3045 *
3046 * Obsolete. Send via RIL_UNSOL_ON_USSD
3047 */
3048#define RIL_UNSOL_ON_USSD_REQUEST 1007
3049
3050
3051/**
3052 * RIL_UNSOL_NITZ_TIME_RECEIVED
3053 *
3054 * Called when radio has received a NITZ time message
3055 *
3056 * "data" is const char * pointing to NITZ time string
3057 * in the form "yy/mm/dd,hh:mm:ss(+/-)tz,dt"
3058 */
3059#define RIL_UNSOL_NITZ_TIME_RECEIVED  1008
3060
3061/**
3062 * RIL_UNSOL_SIGNAL_STRENGTH
3063 *
3064 * Radio may report signal strength rather han have it polled.
3065 *
3066 * "data" is a const RIL_SignalStrength *
3067 */
3068#define RIL_UNSOL_SIGNAL_STRENGTH  1009
3069
3070
3071/**
3072 * RIL_UNSOL_DATA_CALL_LIST_CHANGED
3073 *
3074 * Indicate a PDP context state has changed, or a new context
3075 * has been activated or deactivated
3076 * replaces RIL_UNSOL_PDP_CONTEXT_LIST_CHANGED
3077 *
3078 * "data" is an array of RIL_Data_Call_Response identical to that
3079 * returned by RIL_REQUEST_DATA_CALL_LIST
3080 *
3081 * See also: RIL_REQUEST_DATA_CALL_LIST
3082 */
3083
3084#define RIL_UNSOL_DATA_CALL_LIST_CHANGED 1010
3085
3086/**
3087 * RIL_UNSOL_SUPP_SVC_NOTIFICATION
3088 *
3089 * Reports supplementary service related notification from the network.
3090 *
3091 * "data" is a const RIL_SuppSvcNotification *
3092 *
3093 */
3094
3095#define RIL_UNSOL_SUPP_SVC_NOTIFICATION 1011
3096
3097/**
3098 * RIL_UNSOL_STK_SESSION_END
3099 *
3100 * Indicate when STK session is terminated by SIM.
3101 *
3102 * "data" is NULL
3103 */
3104#define RIL_UNSOL_STK_SESSION_END 1012
3105
3106/**
3107 * RIL_UNSOL_STK_PROACTIVE_COMMAND
3108 *
3109 * Indicate when SIM issue a STK proactive command to applications
3110 *
3111 * "data" is a const char * containing SAT/USAT proactive command
3112 * in hexadecimal format string starting with command tag
3113 *
3114 */
3115#define RIL_UNSOL_STK_PROACTIVE_COMMAND 1013
3116
3117/**
3118 * RIL_UNSOL_STK_EVENT_NOTIFY
3119 *
3120 * Indicate when SIM notifies applcations some event happens.
3121 * Generally, application does not need to have any feedback to
3122 * SIM but shall be able to indicate appropriate messages to users.
3123 *
3124 * "data" is a const char * containing SAT/USAT commands or responses
3125 * sent by ME to SIM or commands handled by ME, in hexadecimal format string
3126 * starting with first byte of response data or command tag
3127 *
3128 */
3129#define RIL_UNSOL_STK_EVENT_NOTIFY 1014
3130
3131/**
3132 * RIL_UNSOL_STK_CALL_SETUP
3133 *
3134 * Indicate when SIM wants application to setup a voice call.
3135 *
3136 * "data" is const int *
3137 * ((const int *)data)[0] contains timeout value (in milliseconds)
3138 */
3139#define RIL_UNSOL_STK_CALL_SETUP 1015
3140
3141/**
3142 * RIL_UNSOL_SIM_SMS_STORAGE_FULL
3143 *
3144 * Indicates that SMS storage on the SIM is full.  Sent when the network
3145 * attempts to deliver a new SMS message.  Messages cannot be saved on the
3146 * SIM until space is freed.  In particular, incoming Class 2 messages
3147 * cannot be stored.
3148 *
3149 * "data" is null
3150 *
3151 */
3152#define RIL_UNSOL_SIM_SMS_STORAGE_FULL 1016
3153
3154/**
3155 * RIL_UNSOL_SIM_REFRESH
3156 *
3157 * Indicates that file(s) on the SIM have been updated, or the SIM
3158 * has been reinitialized.
3159 *
3160 * "data" is an int *
3161 * ((int *)data)[0] is a RIL_SimRefreshResult.
3162 * ((int *)data)[1] is the EFID of the updated file if the result is
3163 * SIM_FILE_UPDATE or NULL for any other result.
3164 *
3165 * Note: If the radio state changes as a result of the SIM refresh (eg,
3166 * SIM_READY -> SIM_LOCKED_OR_ABSENT), RIL_UNSOL_RESPONSE_RADIO_STATE_CHANGED
3167 * should be sent.
3168 */
3169#define RIL_UNSOL_SIM_REFRESH 1017
3170
3171/**
3172 * RIL_UNSOL_CALL_RING
3173 *
3174 * Ring indication for an incoming call (eg, RING or CRING event).
3175 * There must be at least one RIL_UNSOL_CALL_RING at the beginning
3176 * of a call and sending multiple is optional. If the system property
3177 * ro.telephony.call_ring.multiple is false then the upper layers
3178 * will generate the multiple events internally. Otherwise the vendor
3179 * ril must generate multiple RIL_UNSOL_CALL_RING if
3180 * ro.telephony.call_ring.multiple is true or if it is absent.
3181 *
3182 * The rate of these events is controlled by ro.telephony.call_ring.delay
3183 * and has a default value of 3000 (3 seconds) if absent.
3184 *
3185 * "data" is null for GSM
3186 * "data" is const RIL_CDMA_SignalInfoRecord * if CDMA
3187 */
3188#define RIL_UNSOL_CALL_RING 1018
3189
3190/**
3191 * RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED
3192 *
3193 * Indicates that SIM state changes.
3194 *
3195 * Callee will invoke RIL_REQUEST_GET_SIM_STATUS on main thread
3196
3197 * "data" is null
3198 */
3199#define RIL_UNSOL_RESPONSE_SIM_STATUS_CHANGED 1019
3200
3201/**
3202 * RIL_UNSOL_RESPONSE_CDMA_NEW_SMS
3203 *
3204 * Called when new CDMA SMS is received
3205 *
3206 * "data" is const RIL_CDMA_SMS_Message *
3207 *
3208 * Callee will subsequently confirm the receipt of the SMS with
3209 * a RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE
3210 *
3211 * No new RIL_UNSOL_RESPONSE_CDMA_NEW_SMS should be sent until
3212 * RIL_REQUEST_CDMA_SMS_ACKNOWLEDGE has been received
3213 *
3214 */
3215#define RIL_UNSOL_RESPONSE_CDMA_NEW_SMS 1020
3216
3217/**
3218 * RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS
3219 *
3220 * Called when new Broadcast SMS is received
3221 *
3222 * "data" is const char * of 88 bytes which indicates each page
3223 * of a CBS Message sent to the MS by the BTS as coded in 3GPP
3224 * 23.041 Section 9.4.1.1
3225 *
3226 */
3227#define RIL_UNSOL_RESPONSE_NEW_BROADCAST_SMS 1021
3228
3229/**
3230 * RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL
3231 *
3232 * Indicates that SMS storage on the RUIM is full.  Messages
3233 * cannot be saved on the RUIM until space is freed.
3234 *
3235 * "data" is null
3236 *
3237 */
3238#define RIL_UNSOL_CDMA_RUIM_SMS_STORAGE_FULL 1022
3239
3240/**
3241 * RIL_UNSOL_RESTRICTED_STATE_CHANGED
3242 *
3243 * Indicates a restricted state change (eg, for Domain Specific Access Control).
3244 *
3245 * Radio need send this msg after radio off/on cycle no matter it is changed or not.
3246 *
3247 * "data" is an int *
3248 * ((int *)data)[0] contains a bitmask of RIL_RESTRICTED_STATE_* values.
3249 */
3250#define RIL_UNSOL_RESTRICTED_STATE_CHANGED 1023
3251
3252/**
3253 * RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE
3254 *
3255 * Indicates that the radio system selection module has
3256 * autonomously entered emergency callback mode.
3257 *
3258 * "data" is null
3259 *
3260 */
3261#define RIL_UNSOL_ENTER_EMERGENCY_CALLBACK_MODE 1024
3262
3263/**
3264 * RIL_UNSOL_CDMA_CALL_WAITING
3265 *
3266 * Called when CDMA radio receives a call waiting indication.
3267 *
3268 * "data" is const RIL_CDMA_CallWaiting *
3269 *
3270 */
3271#define RIL_UNSOL_CDMA_CALL_WAITING 1025
3272
3273/**
3274 * RIL_UNSOL_CDMA_OTA_PROVISION_STATUS
3275 *
3276 * Called when CDMA radio receives an update of the progress of an
3277 * OTASP/OTAPA call.
3278 *
3279 * "data" is const int *
3280 *  For CDMA this is an integer OTASP/OTAPA status listed in
3281 *  RIL_CDMA_OTA_ProvisionStatus.
3282 *
3283 */
3284#define RIL_UNSOL_CDMA_OTA_PROVISION_STATUS 1026
3285
3286/**
3287 * RIL_UNSOL_CDMA_INFO_REC
3288 *
3289 * Called when CDMA radio receives one or more info recs.
3290 *
3291 * "data" is const RIL_CDMA_InformationRecords *
3292 *
3293 */
3294#define RIL_UNSOL_CDMA_INFO_REC 1027
3295
3296/**
3297 * RIL_UNSOL_OEM_HOOK_RAW
3298 *
3299 * This is for OEM specific use.
3300 *
3301 * "data" is a byte[]
3302 */
3303#define RIL_UNSOL_OEM_HOOK_RAW 1028
3304
3305/**
3306 * RIL_UNSOL_RINGBACK_TONE
3307 *
3308 * Indicates that nework doesn't have in-band information,  need to
3309 * play out-band tone.
3310 *
3311 * "data" is an int *
3312 * ((int *)data)[0] == 0 for stop play ringback tone.
3313 * ((int *)data)[0] == 1 for start play ringback tone.
3314 */
3315#define RIL_UNSOL_RINGBACK_TONE 1029
3316
3317/***********************************************************************/
3318
3319
3320/**
3321 * RIL_Request Function pointer
3322 *
3323 * @param request is one of RIL_REQUEST_*
3324 * @param data is pointer to data defined for that RIL_REQUEST_*
3325 *        data is owned by caller, and should not be modified or freed by callee
3326 * @param t should be used in subsequent call to RIL_onResponse
3327 * @param datalen the length of data
3328 *
3329 */
3330typedef void (*RIL_RequestFunc) (int request, void *data,
3331                                    size_t datalen, RIL_Token t);
3332
3333/**
3334 * This function should return the current radio state synchronously
3335 */
3336typedef RIL_RadioState (*RIL_RadioStateRequest)();
3337
3338/**
3339 * This function returns "1" if the specified RIL_REQUEST code is
3340 * supported and 0 if it is not
3341 *
3342 * @param requestCode is one of RIL_REQUEST codes
3343 */
3344
3345typedef int (*RIL_Supports)(int requestCode);
3346
3347/**
3348 * This function is called from a separate thread--not the
3349 * thread that calls RIL_RequestFunc--and indicates that a pending
3350 * request should be cancelled.
3351 *
3352 * On cancel, the callee should do its best to abandon the request and
3353 * call RIL_onRequestComplete with RIL_Errno CANCELLED at some later point.
3354 *
3355 * Subsequent calls to  RIL_onRequestComplete for this request with
3356 * other results will be tolerated but ignored. (That is, it is valid
3357 * to ignore the cancellation request)
3358 *
3359 * RIL_Cancel calls should return immediately, and not wait for cancellation
3360 *
3361 * Please see ITU v.250 5.6.1 for how one might implement this on a TS 27.007
3362 * interface
3363 *
3364 * @param t token wants to be canceled
3365 */
3366
3367typedef void (*RIL_Cancel)(RIL_Token t);
3368
3369typedef void (*RIL_TimedCallback) (void *param);
3370
3371/**
3372 * Return a version string for your RIL implementation
3373 */
3374typedef const char * (*RIL_GetVersion) (void);
3375
3376typedef struct {
3377    int version;        /* set to RIL_VERSION */
3378    RIL_RequestFunc onRequest;
3379    RIL_RadioStateRequest onStateRequest;
3380    RIL_Supports supports;
3381    RIL_Cancel onCancel;
3382    RIL_GetVersion getVersion;
3383} RIL_RadioFunctions;
3384
3385#ifdef RIL_SHLIB
3386struct RIL_Env {
3387    /**
3388     * "t" is parameter passed in on previous call to RIL_Notification
3389     * routine.
3390     *
3391     * If "e" != SUCCESS, then response can be null/is ignored
3392     *
3393     * "response" is owned by caller, and should not be modified or
3394     * freed by callee
3395     *
3396     * RIL_onRequestComplete will return as soon as possible
3397     */
3398    void (*OnRequestComplete)(RIL_Token t, RIL_Errno e,
3399                           void *response, size_t responselen);
3400
3401    /**
3402     * "unsolResponse" is one of RIL_UNSOL_RESPONSE_*
3403     * "data" is pointer to data defined for that RIL_UNSOL_RESPONSE_*
3404     *
3405     * "data" is owned by caller, and should not be modified or freed by callee
3406     */
3407
3408    void (*OnUnsolicitedResponse)(int unsolResponse, const void *data,
3409                                    size_t datalen);
3410
3411    /**
3412     * Call user-specifed "callback" function on on the same thread that
3413     * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
3414     * a relative time value at which the callback is invoked. If relativeTime is
3415     * NULL or points to a 0-filled structure, the callback will be invoked as
3416     * soon as possible
3417     */
3418
3419    void (*RequestTimedCallback) (RIL_TimedCallback callback,
3420                                   void *param, const struct timeval *relativeTime);
3421};
3422
3423
3424/**
3425 *  RIL implementations must defined RIL_Init
3426 *  argc and argv will be command line arguments intended for the RIL implementation
3427 *  Return NULL on error
3428 *
3429 * @param env is environment point defined as RIL_Env
3430 * @param argc number of arguments
3431 * @param argv list fo arguments
3432 *
3433 */
3434const RIL_RadioFunctions *RIL_Init(const struct RIL_Env *env, int argc, char **argv);
3435
3436#else /* RIL_SHLIB */
3437
3438/**
3439 * Call this once at startup to register notification routine
3440 *
3441 * @param callbacks user-specifed callback function
3442 */
3443void RIL_register (const RIL_RadioFunctions *callbacks);
3444
3445
3446/**
3447 *
3448 * RIL_onRequestComplete will return as soon as possible
3449 *
3450 * @param t is parameter passed in on previous call to RIL_Notification
3451 *          routine.
3452 * @param e error code
3453 *          if "e" != SUCCESS, then response can be null/is ignored
3454 * @param response is owned by caller, and should not be modified or
3455 *                 freed by callee
3456 * @param responselen the length of response in byte
3457 */
3458void RIL_onRequestComplete(RIL_Token t, RIL_Errno e,
3459                           void *response, size_t responselen);
3460
3461/**
3462 * @param unsolResponse is one of RIL_UNSOL_RESPONSE_*
3463 * @param data is pointer to data defined for that RIL_UNSOL_RESPONSE_*
3464 *     "data" is owned by caller, and should not be modified or freed by callee
3465 * @param datalen the length of data in byte
3466 */
3467
3468void RIL_onUnsolicitedResponse(int unsolResponse, const void *data,
3469                                size_t datalen);
3470
3471
3472/**
3473 * Call user-specifed "callback" function on on the same thread that
3474 * RIL_RequestFunc is called. If "relativeTime" is specified, then it specifies
3475 * a relative time value at which the callback is invoked. If relativeTime is
3476 * NULL or points to a 0-filled structure, the callback will be invoked as
3477 * soon as possible
3478 *
3479 * @param callback user-specifed callback function
3480 * @param param parameter list
3481 * @param relativeTime a relative time value at which the callback is invoked
3482 */
3483
3484void RIL_requestTimedCallback (RIL_TimedCallback callback,
3485                               void *param, const struct timeval *relativeTime);
3486
3487
3488#endif /* RIL_SHLIB */
3489
3490#ifdef __cplusplus
3491}
3492#endif
3493
3494#endif /*ANDROID_RIL_H*/
3495