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