blob: d20133235e972c27e2e8e4a9a420d1a5936d9f02 [file] [log] [blame]
Jayachandran C262b6062020-07-22 15:53:58 -07001/*
2 * Copyright (C) 2020 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
17package android.hardware.radio@1.6;
18
allenwtsu1c3dcd32020-09-25 17:58:01 +080019
20import @1.0::CdmaSmsMessage;
Shuo Qian3f865332021-02-02 00:05:42 +000021import @1.0::Dial;
allenwtsu1c3dcd32020-09-25 17:58:01 +080022import @1.0::GsmSmsMessage;
Jordan Liue4f5f022020-10-21 16:28:40 -070023import @1.1::CardPowerState;
Jayachandran C9bc276b2020-07-24 00:46:58 -070024import @1.2::DataRequestReason;
Shuo Qian3f865332021-02-02 00:05:42 +000025import @1.4::EmergencyCallRouting;
26import @1.4::EmergencyServiceCategory;
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +020027import @1.4::RadioAccessFamily;
Jayachandran C262b6062020-07-22 15:53:58 -070028import @1.5::IRadio;
Jayachandran C9bc276b2020-07-24 00:46:58 -070029import @1.5::AccessNetwork;
30import @1.5::DataProfileInfo;
31import @1.5::LinkAddress;
Jayachandran C262b6062020-07-22 15:53:58 -070032
33/**
34 * This interface is used by telephony and telecom to talk to cellular radio.
35 * All the functions have minimum one parameter:
36 * serial: which corresponds to serial no. of request. Serial numbers must only be memorized for the
37 * duration of a method call. If clients provide colliding serials (including passing the same
38 * serial to different methods), multiple responses (one for each method call) must still be served.
Jayachandran C9bc276b2020-07-24 00:46:58 -070039 * setResponseFunctions must work with @1.6::IRadioResponse and @1.6::IRadioIndication.
Jayachandran C262b6062020-07-22 15:53:58 -070040 */
41interface IRadio extends @1.5::IRadio {
Jayachandran C9bc276b2020-07-24 00:46:58 -070042 /**
Tim Line29df602020-09-26 22:43:24 +080043 * Toggle radio on and off (for "airplane" mode)
44 * If the radio is turned off/on the radio modem subsystem
45 * is expected return to an initialized state. For instance,
46 * any voice and data calls must be terminated and all associated
47 * lists emptied.
48 *
49 * When setting radio power on to exit from airplane mode to place an emergency call on this
50 * logical modem, powerOn, forEmergencyCall and preferredForEmergencyCall must be true. In
51 * this case, this modem is optimized to scan only emergency call bands, until:
52 * 1) Emergency call is completed; or
53 * 2) Another setRadioPower_1_5 is issued with forEmergencyCall being false or
54 * preferredForEmergencyCall being false; or
55 * 3) Timeout after 30 seconds if dial or emergencyDial is not called.
56 * Once one of these conditions is reached, the modem should move into normal operation.
57 *
58 * @param serial Serial number of request.
59 * @param powerOn To turn on radio -> on = true, to turn off radio -> on = false.
60 * @param forEmergencyCall To indication to radio if this request is due to emergency call.
61 * No effect if powerOn is false.
62 * @param preferredForEmergencyCall indicate whether the following emergency call will be sent
63 * on this modem or not. No effect if forEmergencyCall is false, or powerOn is false.
64 *
65 * Response callback is IRadioConfigResponse. setRadioPowerResponse_1_6.
66
67 * Note this API is the same as the 1.5
68 */
69 oneway setRadioPower_1_6(int32_t serial, bool powerOn, bool forEmergencyCall,
70 bool preferredForEmergencyCall);
71
72 /**
Jayachandran C9bc276b2020-07-24 00:46:58 -070073 * Returns the data call list. An entry is added when a setupDataCall() is issued and removed
74 * on a deactivateDataCall(). The list is emptied when setRadioPower() off/on issued or when
75 * the vendor HAL or modem crashes.
76 *
77 * @param serial Serial number of request.
78 *
79 * Response function is IRadioResponse.getDataCallListResponse_1_6()
80 */
81 oneway getDataCallList_1_6(int32_t serial);
82
83 /**
84 * Setup a packet data connection. If DataCallResponse.status returns DataCallFailCause:NONE,
85 * the data connection must be added to data calls and a unsolDataCallListChanged() must be
86 * sent. The call remains until removed by subsequent unsolDataCallIstChanged(). It may be
87 * lost due to many factors, including deactivateDataCall() being issued, the radio powered
88 * off, reception lost or even transient factors like congestion. This data call list is
89 * returned by getDataCallList() and dataCallListChanged().
90 *
91 * The Radio is expected to:
92 * - Create one data call context.
93 * - Create and configure a dedicated interface for the context.
94 * - The interface must be point to point.
95 * - The interface is configured with one or more addresses and is capable of sending and
96 * receiving packets. The format is IP address with optional "/" prefix length
97 * (The format is defined in RFC-4291 section 2.3). For example, "192.0.1.3",
98 * "192.0.1.11/16", or "2001:db8::1/64". Typically one IPv4 or one IPv6 or one of each. If
99 * the prefix length is absent, then the addresses are assumed to be point to point with
100 * IPv4 with prefix length 32 or IPv6 with prefix length 128.
101 * - Must not modify routing configuration related to this interface; routing management is
102 * exclusively within the purview of the Android OS.
103 * - Support simultaneous data call contexts up to DataRegStateResult.maxDataCalls specified
104 * in the response of getDataRegistrationState.
105 *
Sarah Chin912e6062021-02-03 12:02:14 -0800106 * The differences relative to the 1.5 version of the API are:
107 * - The addition of new parameters pduSessionId, sliceInfo, trafficDescriptor, and
108 * matchAllRuleAllowed.
109 * - If an existing data call should be used for the request, that must be indicated in the
110 * response by setting SetupDataCallResult::cid to the context id of that call.
111 *
Jayachandran C9bc276b2020-07-24 00:46:58 -0700112 * @param serial Serial number of request.
113 * @param accessNetwork The access network to setup the data call. If the data connection cannot
114 * be established on the specified access network then it should be responded with an error.
115 * @param dataProfileInfo Data profile info.
116 * @param roamingAllowed Indicates whether or not data roaming is allowed by the user.
117 * @param reason The request reason. Must be DataRequestReason:NORMAL or
118 * DataRequestReason:HANDOVER.
119 * @param addresses If the reason is DataRequestReason:HANDOVER, this indicates the list of link
120 * addresses of the existing data connection. This parameter must be ignored unless reason
121 * is DataRequestReason:HANDOVER.
122 * @param dnses If the reason is DataRequestReason:HANDOVER, this indicates the list of DNS
123 * addresses of the existing data connection. The format is defined in RFC-4291 section 2.2.
124 * For example, "192.0.1.3" or "2001:db8::1". This parameter must be ignored unless reason
125 * is DataRequestReason:HANDOVER.
Daniel Bright3c72fba2020-11-03 14:56:23 -0800126 * @param pduSessionId The pdu session id to be used for this data call. A value of 0 means
127 * no pdu session id was attached to this call.
128 * Reference: 3GPP TS 24.007 section 11.2.3.1b
Daniel Bright8e3a2bf2020-12-14 12:51:08 -0800129 * @param sliceInfo SliceInfo to be used for the data connection when a handover occurs from
130 * EPDG to 5G. It is valid only when accessNetwork is AccessNetwork:NGRAN. If the slice
Sarah Chin912e6062021-02-03 12:02:14 -0800131 * passed from EPDG is rejected, then the data failure cause must be
132 * DataCallFailCause:SLICE_REJECTED.
Hongbo Zeng55487e12021-01-21 17:23:45 +0800133 * @param trafficDescriptor TrafficDescriptor for which data connection needs to be
134 * established. It is used for URSP traffic matching as described in TS 24.526
135 * Section 4.2.2. It includes an optional DNN which, if present, must be used for traffic
136 * matching -- it does not specify the end point to be used for the data call. The end
137 * point is specified by DataProfileInfo.apn; DataProfileInfo.apn must be used as the end
138 * point if one is not specified through URSP rules.
139 * @param matchAllRuleAllowed bool to indicate if using default match-all URSP rule for this
140 * request is allowed. If false, this request must not use the match-all URSP rule and if
141 * a non-match-all rule is not found (or if URSP rules are not available) it should return
142 * failure with cause DataCallFailCause:MATCH_ALL_RULE_NOT_ALLOWED. This is needed as some
143 * requests need to have a hard failure if the intention cannot be met, for example, a
144 * zero-rating slice.
Jayachandran C9bc276b2020-07-24 00:46:58 -0700145 *
146 * Response function is IRadioResponse.setupDataCallResponse_1_6()
147 *
148 * Note this API is the same as the 1.5
149 */
150 oneway setupDataCall_1_6(int32_t serial, AccessNetwork accessNetwork,
151 DataProfileInfo dataProfileInfo, bool roamingAllowed,
Daniel Bright3c72fba2020-11-03 14:56:23 -0800152 DataRequestReason reason, vec<LinkAddress> addresses, vec<string> dnses,
Hongbo Zeng55487e12021-01-21 17:23:45 +0800153 int32_t pduSessionId, OptionalSliceInfo sliceInfo,
154 OptionalTrafficDescriptor trafficDescriptor, bool matchAllRuleAllowed);
allenwtsu1c3dcd32020-09-25 17:58:01 +0800155
156 /**
157 * Send an SMS message
158 *
159 * @param serial Serial number of request.
160 * @param message GsmSmsMessage as defined in types.hal
161 *
162 * Response function is IRadioResponse.sendSmsResponse_1_6()
163 *
164 * Note this API is the same as the 1.0
165 *
166 * Based on the return error, caller decides to resend if sending sms
167 * fails. RadioError:SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
168 * and RadioError:GENERIC_FAILURE means no retry (i.e. error cause is 500)
169 */
170 oneway sendSms_1_6(int32_t serial, GsmSmsMessage message);
171
172 /**
173 * Send an SMS message. Identical to sendSms_1_6,
174 * except that more messages are expected to be sent soon. If possible,
175 * keep SMS relay protocol link open (eg TS 27.005 AT+CMMS command)
176 *
177 * @param serial Serial number of request.
178 * @param message GsmSmsMessage as defined in types.hal
179 *
180 * Response function is IRadioResponse.sendSMSExpectMoreResponse_1_6()
181 *
182 * Note this API is the same as the 1.0
183 *
184 * Based on the return error, caller decides to resend if sending sms
185 * fails. RadioError:SMS_SEND_FAIL_RETRY means retry (i.e. error cause is 332)
186 * and RadioError:GENERIC_FAILURE means no retry (i.e. error cause is 500)
187 */
188 oneway sendSMSExpectMore_1_6(int32_t serial, GsmSmsMessage message);
189
190 /**
191 * Send a CDMA SMS message
192 *
193 * @param serial Serial number of request.
194 * @param sms Cdma Sms to be sent described by CdmaSmsMessage in types.hal
195 *
196 * Response callback is IRadioResponse.sendCdmaSmsResponse_1_6()
197 *
198 * Note this API is the same as the 1.0
199 *
200 */
201 oneway sendCdmaSms_1_6(int32_t serial, CdmaSmsMessage sms);
202
203 /**
204 * Send an SMS message. Identical to sendCdmaSms_1_6,
205 * except that more messages are expected to be sent soon.
206 *
207 * @param serial Serial number of request.
208 * @param sms Cdma Sms to be sent described by CdmaSmsMessage in types.hal
209 *
210 * Response callback is IRadioResponse.sendCdmaSMSExpectMoreResponse_1_6()
211 *
212 * Note this API is the same as the 1.5
213 *
214 */
215 oneway sendCdmaSmsExpectMore_1_6(int32_t serial, CdmaSmsMessage sms);
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700216
217 /**
Jordan Liue4f5f022020-10-21 16:28:40 -0700218 * Set SIM card power state.
219 * Request is used to power off or power on the card. It should not generate
220 * a CardState.CARDSTATE_ABSENT indication, since the SIM is still physically
221 * inserted.
222 *
223 * @param serial Serial number of request
224 * @param powerUp POWER_DOWN if powering down the SIM card,
225 * POWER_UP if powering up the SIM card,
226 * POWER_UP_PASS_THROUGH if powering up the SIM card in
227 * pass through mode.
228 *
229 * When SIM card is in POWER_UP_PASS_THROUGH, the modem does not send
230 * any command to it (for example SELECT of MF, or TERMINAL
231 * CAPABILITY), and the SIM card is controlled completely by Telephony
232 * sending APDUs directly. The SIM card state must be
233 * RIL_CARDSTATE_PRESENT and the number of card apps will be 0.
234 * No new error code is generated. Emergency calls are supported in
235 * the same way as if the SIM card is absent.
236 * Pass-through mode is valid only for the specific card session where
237 * it is activated, and normal behavior occurs at the next SIM
238 * initialization, unless POWER_UP_PASS_THROUGH is requested again.
239 *
240 * The device is required to power down the SIM card before it can
241 * switch the mode between POWER_UP and POWER_UP_PASS_THROUGH.
242 * At device power up, the SIM interface is powered up automatically.
243 * Each subsequent request to this method is processed only after the
244 * completion of the previous one.
245 *
Jordan Liu8ca952e2020-11-09 15:47:21 -0800246 * When the SIM is in POWER_DOWN, the modem should send an empty vector of
247 * AppStatus in CardStatus.applications. If a SIM in the POWER_DOWN state
248 * is removed and a new SIM is inserted, the new SIM should be in POWER_UP
249 * mode by default. If the device is turned off or restarted while the SIM
250 * is in POWER_DOWN, then the SIM should turn on normally in POWER_UP mode
251 * when the device turns back on.
252 *
Jordan Liue4f5f022020-10-21 16:28:40 -0700253 * Response callback is IRadioResponse.setSimCardPowerResponse_1_6().
254 * Note that this differs from setSimCardPower_1_1 in that the response
255 * callback should only be sent once the device has finished executing
256 * the request (the SIM has finished powering on or off).
257 */
258 oneway setSimCardPower_1_6(int32_t serial, CardPowerState powerUp);
259
260 /**
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700261 * Enable or disable E-UTRA-NR dual connectivity. If disabled then UE will not connect
262 * to secondary carrier.
263 *
264 * @param serial Serial number of request.
265 * @param nrDualConnectivityState expected NR dual connectivity state.
266 * 1. Enable NR dual connectivity {NrDualConnectivityState:ENABLE}
267 * 2. Disable NR dual connectivity {NrDualConnectivityState:DISABLE}
268 * 3. Disable NR dual connectivity and force secondary cell to be released
269 * {NrDualConnectivityState:DISABLE_IMMEDIATE}
270
Sooraj Sasindrane9525fd2020-11-03 20:46:57 -0800271 * Response callback is IRadioResponse.setNRDualConnectivityStateResponse()
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700272 */
Sooraj Sasindrane9525fd2020-11-03 20:46:57 -0800273 oneway setNrDualConnectivityState(int32_t serial,
Sooraj Sasindrana9d461b2020-08-14 11:00:11 -0700274 NrDualConnectivityState nrDualConnectivityState);
275
276 /**
277 * Is E-UTRA-NR Dual Connectivity enabled
278 *
279 * @param serial Serial number of request.
280 * Response callback is IRadioResponse.isNRDualConnectivityEnabledResponse()
281 */
282 oneway isNrDualConnectivityEnabled(int32_t serial);
Daniel Bright15cc34a2020-10-26 11:34:53 -0700283
284 /**
285 * Reserves an unallocated pdu session id from the pool of ids.
286 *
287 * The allocated id is returned in the response.
288 *
289 * When the id is no longer needed, call releasePduSessionId to
290 * return it to the pool.
291 *
292 * Reference: 3GPP TS 24.007 section 11.2.3.1b
293 *
294 * @param serial Serial number of request.
295 *
296 * Response function is IRadioResponse.allocatePduSessionIdResponse()
297 */
298 oneway allocatePduSessionId(int32_t serial);
299
300 /**
301 * Releases a pdu session id that was previously allocated using
302 * allocatePduSessionId.
303 *
304 * Reference: 3GPP TS 24.007 section 11.2.3.1b
305 * @param serial Serial number of request.
306 * @param id Pdu session id to release.
307 *
308 * Response function is IRadioResponse.releasePduSessionIdResponse()
309 */
310 oneway releasePduSessionId(int32_t serial, int32_t id);
311
312 /**
313 * Indicates that a handover to the IWLAN transport has begun.
314 *
315 * Any resources being transferred to the IWlan transport cannot be released while a
316 * handover is underway. For example, if a pdu session id needs to be
317 * transferred to IWlan, then, the modem should not release the id while
318 * the handover is in progress.
319 *
320 * If a handover was unsuccessful, then the framework calls IRadio::cancelHandover.
321 * The modem retains ownership over any of the resources being transferred to IWlan.
322 *
323 * If a handover was successful, the framework calls IRadio::deactivateDataCall with reason
324 * HANDOVER. The IWlan transport now owns the transferred resources and is responsible for
325 * releasing them.
326 *
327 * @param serial Serial number of request.
328 * @param id callId The identifier of the data call which is provided in SetupDataCallResult
329 *
Daniel Bright3c72fba2020-11-03 14:56:23 -0800330 * Response function is IRadioResponse.startHandoverResponse()
Daniel Bright15cc34a2020-10-26 11:34:53 -0700331 */
Daniel Bright3c72fba2020-11-03 14:56:23 -0800332 oneway startHandover(int32_t serial, int32_t callId);
Daniel Bright15cc34a2020-10-26 11:34:53 -0700333
334 /**
Daniel Bright3c72fba2020-11-03 14:56:23 -0800335 * Indicates that a handover was cancelled after a call to IRadio::startHandover.
Daniel Bright15cc34a2020-10-26 11:34:53 -0700336 *
337 * Since the handover was unsuccessful, the modem retains ownership over any of the resources
338 * being transferred and is still responsible for releasing them.
339 *
340 * @param serial Serial number of request.
341 * @param id callId The identifier of the data call which is provided in SetupDataCallResult
342 *
343 * Response function is IRadioResponse.cancelHandoverResponse()
344 */
345 oneway cancelHandover(int32_t serial, int32_t callId);
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +0200346
347 /**
348 * Requests to set the network type for searching and registering.
349 *
SongFerngWangf92b61c2021-01-26 03:08:48 +0800350 * Instruct the radio to *only* accept the types of network provided.
351 * setPreferredNetworkType, setPreferredNetworkTypesBitmap will not be called anymore
352 * except for IRadio v1.5 or older devices.
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +0200353 *
ThiƩbaud Weksteen2ee3e2e2020-12-16 17:08:17 +0100354 * In case of an emergency call, the modem is authorized to bypass this
355 * restriction.
356 *
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +0200357 * @param serial Serial number of request.
358 * @param networkTypeBitmap a 32-bit bearer bitmap of RadioAccessFamily
359 *
SongFerngWangf92b61c2021-01-26 03:08:48 +0800360 * Response callback is IRadioResponse.setAllowedNetworkTypesBitmapResponse()
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +0200361 */
SongFerngWangf92b61c2021-01-26 03:08:48 +0800362 oneway setAllowedNetworkTypesBitmap(
ThiƩbaud Weksteen5ae16f32020-08-21 16:46:07 +0200363 uint32_t serial, bitfield<RadioAccessFamily> networkTypeBitmap);
Jack Nudelman5cd94142020-09-24 14:23:35 -0700364
365 /**
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000366 * Requests bitmap representing the currently allowed network types.
367 *
SongFerngWangf92b61c2021-01-26 03:08:48 +0800368 * getPreferredNetworkType, getPreferredNetworkTypesBitmap will not be called anymore
369 * except for IRadio v1.5 or older devices.
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000370 *
371 * @param serial Serial number of request.
372 *
SongFerngWangf92b61c2021-01-26 03:08:48 +0800373 * Response callback is IRadioResponse.getAllowedNetworkTypesBitmapResponse()
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000374 */
SongFerngWangf92b61c2021-01-26 03:08:48 +0800375 oneway getAllowedNetworkTypesBitmap(uint32_t serial);
Yomna Nassere8bfa9c2020-11-17 22:00:55 +0000376
377 /**
Jack Nudelman5cd94142020-09-24 14:23:35 -0700378 * Control data throttling at modem.
379 * - DataThrottlingAction:NO_DATA_THROTTLING should clear any existing
380 * data throttling within the requested completion window.
381 * - DataThrottlingAction:THROTTLE_SECONDARY_CARRIER: Remove any existing
382 * throttling on anchor carrier and achieve maximum data throttling on
383 * secondary carrier within the requested completion window.
384 * - DataThrottlingAction:THROTTLE_ANCHOR_CARRIER: disable secondary
385 * carrier and achieve maximum data throttling on anchor carrier by
386 * requested completion window.
387 * - DataThrottlingAction:HOLD: Immediately hold on to current level of
388 * throttling.
389 *
390 * @param serial Serial number of request.
391 * @param dataThrottlingAction DataThrottlingAction as defined in types.hal
Jack Nudelman3f765542020-11-18 16:21:06 -0800392 * @param completionDurationMillis window, in milliseconds, in which the
393 * requested throttling action has to be achieved. This must be 0 when
Jack Nudelman5cd94142020-09-24 14:23:35 -0700394 * dataThrottlingAction is DataThrottlingAction:HOLD.
395 *
396 * Response function is IRadioResponse.setDataThrottlingResponse()
397 */
398 oneway setDataThrottling(int32_t serial,
399 DataThrottlingAction dataThrottlingAction,
Jack Nudelman3f765542020-11-18 16:21:06 -0800400 int64_t completionDurationMillis);
Sarah Chinf69abcf2020-11-18 13:40:15 -0800401
402 /**
Shuo Qian3f865332021-02-02 00:05:42 +0000403 * Initiate emergency voice call, with zero or more emergency service category(s), zero or
404 * more emergency Uniform Resource Names (URN), and routing information for handling the call.
405 * Android uses this request to make its emergency call instead of using @1.0::IRadio.dial
406 * if the 'address' in the 'dialInfo' field is identified as an emergency number by Android.
407 *
408 * In multi-sim scenario, if the emergency number is from a specific subscription, this radio
409 * request can still be sent out on the other subscription as long as routing is set to
410 * @1.4::EmergencyNumberRouting#EMERGENCY. This radio request will not be sent on an inactive
411 * (PIN/PUK locked) subscription unless both subscriptions are PIN/PUK locked. In this case,
412 * the request will be sent on the primary subscription.
413 *
414 * Some countries or carriers require some emergency numbers that must be handled with normal
415 * call routing if possible or emergency routing. 1) if the 'routing' field is specified as
416 * @1.4::EmergencyNumberRouting#NORMAL, the implementation must try the full radio service to
417 * use normal call routing to handle the call; if service cannot support normal routing, the
418 * implementation must use emergency routing to handle the call. 2) if 'routing' is specified
419 * as @1.4::EmergencyNumberRouting#EMERGENCY, the implementation must use emergency routing to
420 * handle the call. 3) if 'routing' is specified as @1.4::EmergencyNumberRouting#UNKNOWN,
421 * Android does not know how to handle the call.
422 *
423 * If the dialed emergency number does not have a specified emergency service category, the
424 * 'categories' field is set to @1.4::EmergencyServiceCategory#UNSPECIFIED; if the dialed
425 * emergency number does not have specified emergency Uniform Resource Names, the 'urns' field
426 * is set to an empty list. If the underlying technology used to request emergency services
427 * does not support the emergency service category or emergency uniform resource names, the
428 * field 'categories' or 'urns' may be ignored.
429 *
430 * In the scenarios that the 'address' in the 'dialInfo' field has other functions besides the
431 * emergency number function, if the 'hasKnownUserIntentEmergency' field is true, the user's
432 * intent for this dial request is emergency call, and the modem must treat this as an actual
433 * emergency dial; if the 'hasKnownUserIntentEmergency' field is false, Android does not know
434 * user's intent for this call.
435 *
436 * If 'isTesting' is true, this request is for testing purpose, and must not be sent to a real
437 * emergency service; otherwise it's for a real emergency call request.
438 *
439 * Reference: 3gpp 22.101, Section 10 - Emergency Calls;
440 * 3gpp 23.167, Section 6 - Functional description;
441 * 3gpp 24.503, Section 5.1.6.8.1 - General;
442 * RFC 5031
443 *
444 * @param serial Serial number of request.
445 * @param dialInfo the same @1.0::Dial information used by @1.0::IRadio.dial.
446 * @param categories bitfield<@1.4::EmergencyServiceCategory> the Emergency Service Category(s)
447 * of the call.
448 * @param urns the emergency Uniform Resource Names (URN)
449 * @param routing @1.4::EmergencyCallRouting the emergency call routing information.
450 * @param hasKnownUserIntentEmergency Flag indicating if user's intent for the emergency call
451 * is known.
452 * @param isTesting Flag indicating if this request is for testing purpose.
453 *
454 * Response function is IRadioResponse.emergencyDialResponse()
455 */
456 oneway emergencyDial_1_6(int32_t serial, Dial dialInfo,
457 bitfield<EmergencyServiceCategory> categories, vec<string> urns,
458 EmergencyCallRouting routing, bool hasKnownUserIntentEmergency, bool isTesting);
459
460 /**
Sarah Chinf69abcf2020-11-18 13:40:15 -0800461 * Get which bands the modem's background scan is acting on.
462 *
463 * @param serial Serial number of request.
464 *
465 * Response callback is IRadioResponse.getSystemSelectionChannelsResponse()
466 */
467 oneway getSystemSelectionChannels(int32_t serial);
Hui Wangfb202502020-11-13 04:30:18 +0000468
Mingming Caida0d9832020-11-05 17:56:57 -0800469 /**
470 * Request all of the current cell information known to the radio. The radio
471 * must return list of all current cells, including the neighboring cells. If for a particular
472 * cell information isn't known then the appropriate unknown value will be returned.
473 * This does not cause or change the rate of unsolicited cellInfoList().
474 *
Sarah Chine52a3942021-02-12 11:55:15 -0800475 * This is identical to getCellInfoList in V1.0, but it requests updated version of CellInfo.
Mingming Caida0d9832020-11-05 17:56:57 -0800476 *
477 * @param serial Serial number of request.
478 *
479 * Response callback is IRadioResponse.getCellInfoListResponse()
480 */
481 oneway getCellInfoList_1_6(int32_t serial);
482
Hui Wangfb202502020-11-13 04:30:18 +0000483 /**
484 * Request current voice registration state.
485 *
486 * @param serial Serial number of request.
487 *
488 * Response function is IRadioResponse.getVoiceRegistrationStateResponse_1_6()
489 */
490 oneway getVoiceRegistrationState_1_6(int32_t serial);
491
492 /**
Mingming Cai20a2f422020-12-03 12:18:48 -0800493 * Requests current signal strength and associated information. Must succeed if radio is on.
494 *
495 * @param serial Serial number of request.
496 *
497 * Response function is IRadioResponse.getSignalStrengthResponse_1_6()
498 */
499 oneway getSignalStrength_1_6(int32_t serial);
500
501 /**
Hui Wangfb202502020-11-13 04:30:18 +0000502 * Request current data registration state.
503 *
504 * @param serial Serial number of request.
505 *
506 * Response function is IRadioResponse.getDataRegistrationStateResponse_1_6()
507 */
508 oneway getDataRegistrationState_1_6(int32_t serial);
Shinsuke Ishiokaede1e952018-08-17 18:02:29 +0900509
510 /**
511 * Requests current call list
512 *
513 * @param serial Serial number of request.
514 *
515 * Response function is IRadioResponse.getCurrentCallsResponse_1_6()
516 */
517 oneway getCurrentCalls_1_6(int32_t serial);
Tyler Wear6c9d2c62020-07-30 13:21:03 -0700518
519 /**
Hongbo Zengb1ea8db2021-02-02 23:01:12 +0800520 * Request to get the current slicing configuration including URSP rules and
521 * NSSAIs (configured, allowed and rejected).
522 * URSP stands for UE route selection policy and is defined in 3GPP TS 24.526
523 * Section 4.2.
524 * An NSSAI is a collection of network slices. Each network slice is identified by
525 * an S-NSSAI and is represented by the struct SliceInfo. NSSAI and S-NSSAI
526 * are defined in 3GPP TS 24.501.
527 *
528 * Response function is IRadioResponse.getSlicingConfigResponse()
529 */
530 oneway getSlicingConfig(int32_t serial);
531
532 /**
Tyler Wear6c9d2c62020-07-30 13:21:03 -0700533 * Provide Carrier specific information to the modem that must be used to
534 * encrypt the IMSI and IMPI. Sent by the framework during boot, carrier
535 * switch and everytime the framework receives a new certificate.
536 *
537 * @param serial Serial number of request.
538 * @param imsiEncryptionInfo ImsiEncryptionInfo as defined in types.hal.
539 *
540 * Response callback is
541 * IRadioResponse.setCarrierInfoForImsiEncryptionResponse()
542 *
543 * Note this API is the same as the 1.1 version except using the 1.6 ImsiEncryptionInfo
544 * as the input param.
545 */
546 oneway setCarrierInfoForImsiEncryption_1_6(int32_t serial, @1.6::ImsiEncryptionInfo imsiEncryptionInfo);
Jayachandran C262b6062020-07-22 15:53:58 -0700547};