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