blob: f4d3ba946e2bb477f813072bcb37e3c93aa72c8a [file] [log] [blame]
sqian8ffbfa52018-08-29 20:26:03 -07001/*
2 * Copyright (C) 2018 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
Malcolm Chen638f0052018-11-26 13:11:03 -080017package android.hardware.radio@1.4;
sqian8ffbfa52018-08-29 20:26:03 -070018
19import @1.0::RadioIndicationType;
Malcolm Chen638f0052018-11-26 13:11:03 -080020import @1.3::IRadioIndication;
sqian8ffbfa52018-08-29 20:26:03 -070021
22/**
23 * Interface declaring unsolicited radio indications.
24 */
Malcolm Chen638f0052018-11-26 13:11:03 -080025interface IRadioIndication extends @1.3::IRadioIndication {
sqian8ffbfa52018-08-29 20:26:03 -070026 /**
sqian968f5312018-09-19 14:10:42 -070027 * Report the current list of emergency numbers
sqian8ffbfa52018-08-29 20:26:03 -070028 *
Malcolm Chen638f0052018-11-26 13:11:03 -080029 * Each emergency number (@1.4::EmergencyNumber) in the emergency number list contains a
sqian99004cd2019-01-09 18:19:37 -080030 * dialing number, zero or more service category(s), zero or more emergency uniform resource
31 * names, mobile country code, mobile network code, and source(s) that indicate where it comes
32 * from.
sqian8ffbfa52018-08-29 20:26:03 -070033 *
sqian61424082018-12-18 21:34:32 -080034 * Radio must report all the valid emergency numbers with known mobile country code, mobile
sqian99004cd2019-01-09 18:19:37 -080035 * network code, emergency service categories, and emergency uniform resource names from all
36 * available sources including network signaling, sim, modem/oem configuration, and default
37 * configuration (112 and 911 must be always available; additionally, 000, 08, 110, 999, 118
38 * and 119 must be available when sim is not present). Radio shall not report emergency numbers
39 * that are invalid in the current locale. The reported emergency number list must not have
40 * duplicate @1.4::EmergencyNumber entries. Please refer the documentation of
41 * @1.4::EmergencyNumber to construct each emergency number to report.
sqian8ffbfa52018-08-29 20:26:03 -070042 *
sqian968f5312018-09-19 14:10:42 -070043 * Radio must report the complete list of emergency numbers whenever the emergency numbers in
44 * the list are changed or whenever the client and the radio server are connected.
sqian8ffbfa52018-08-29 20:26:03 -070045 *
sqian99004cd2019-01-09 18:19:37 -080046 * Reference: 3gpp 22.101, Section 10 - Emergency Calls;
47 * 3gpp 24.008, Section 9.2.13.4 - Emergency Number List
sqian8ffbfa52018-08-29 20:26:03 -070048 *
49 * @param type Type of radio indication
sqian968f5312018-09-19 14:10:42 -070050 * @param emergencyNumberList Current list of emergency numbers known to radio.
sqian8ffbfa52018-08-29 20:26:03 -070051 */
52 oneway currentEmergencyNumberList(RadioIndicationType type,
53 vec<EmergencyNumber> emergencyNumberList);
Pengquan Meng1d4e8ae2018-11-07 16:22:32 -080054
55 /**
Pengquan Meng16ad3c22019-02-05 17:37:54 -080056 * Report all of the current cell information known to the radio.
Pengquan Meng1d4e8ae2018-11-07 16:22:32 -080057 *
58 * @param type Type of radio indication
59 * @param records Current cell information
60 */
Malcolm Chen638f0052018-11-26 13:11:03 -080061 oneway cellInfoList_1_4(RadioIndicationType type, vec<CellInfo> records);
Pengquan Meng1d4e8ae2018-11-07 16:22:32 -080062
63 /**
64 * Incremental network scan results
65 */
Malcolm Chen638f0052018-11-26 13:11:03 -080066 oneway networkScanResult_1_4(RadioIndicationType type, NetworkScanResult result);
Pengquan Meng76876502018-11-14 19:33:25 -080067
68 /**
69 * Indicates physical channel configurations.
70 *
71 * An empty configs list indicates that the radio is in idle mode.
72 *
73 * @param type Type of radio indication
74 * @param configs Vector of PhysicalChannelConfigs
75 */
Malcolm Chen638f0052018-11-26 13:11:03 -080076 oneway currentPhysicalChannelConfigs_1_4(RadioIndicationType type,
Pengquan Meng76876502018-11-14 19:33:25 -080077 vec<PhysicalChannelConfig> configs);
paulhu31aed672018-12-18 19:30:16 +080078
79 /**
80 * Indicates data call contexts have changed.
81 *
82 * @param type Type of radio indication
83 * @param dcList Array of SetupDataCallResult identical to that returned by
84 * IRadio.getDataCallList(). It is the complete list of current data contexts including
85 * new contexts that have been activated. A data call is only removed from this list
86 * when below conditions matched.
87 * 1. The framework sends a IRadio.deactivateDataCall().
88 * 2. The radio is powered off/on.
89 * 3. Unsolicited disconnect from either modem or network side.
90 */
91 oneway dataCallListChanged_1_4(RadioIndicationType type, vec<SetupDataCallResult> dcList);
Pengquan Menge32a7552019-01-28 16:38:10 -080092
93 /**
94 * Indicates current signal strength of the radio.
95 *
96 * @param type Type of radio indication
97 * @param signalStrength SignalStrength information
98 */
99 oneway currentSignalStrength_1_4(RadioIndicationType type, SignalStrength signalStrength);
paulhu31aed672018-12-18 19:30:16 +0800100};