blob: 9e09348087d294618e63856b9ef28d2c56237f8e [file] [log] [blame]
Mitchell Wills5443a9f2016-08-18 11:44:58 -07001/*
2 * Copyright 2016 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.wifi@1.0;
18
19import IWifiChip;
20import IWifiEventCallback;
21
22/**
23 * This is the root of the HAL module and is the interface returned when
24 * loading an implementation of the Wi-Fi HAL. There must be at most one
25 * module loaded in the system.
26 */
27interface IWifi {
28 /**
29 * Requests notifications of significant events for the HAL. Multiple calls to
30 * this must register multiple callbacks each of which must receive all
Roshan Pius6f31d922016-10-04 15:08:05 -070031 * events. |IWifiEventCallback| object registration must be independent of the
32 * state of the rest of the HAL and must persist though stops/starts. These
33 * objects must be deleted when the corresponding client process is dead.
34 *
35 * @param callback An instance of the |IWifiEventCallback| HIDL interface
36 * object.
Mitchell Wills5443a9f2016-08-18 11:44:58 -070037 */
38 @entry
39 @callflow(next={"*"})
40 oneway registerEventCallback(IWifiEventCallback callback);
41
42 /**
43 * Get the current state of the HAL.
Roshan Pius6f31d922016-10-04 15:08:05 -070044 *
45 * @return started true if started, false otherwise.
Mitchell Wills5443a9f2016-08-18 11:44:58 -070046 */
47 isStarted() generates (bool started);
48
49 /**
50 * Perform any setup that is required to make use of the module. If the module
51 * is already started then this must be a noop. The onStart callback must be
52 * called when the setup completes or if the HAL is already started. If the
53 * setup fails then onStartFailure must be called.
54 */
55 @entry
56 @callflow(next={"registerEventCallback", "start", "stop", "getChip"})
57 oneway start();
58
59 /**
60 * Tear down any state, ongoing commands, etc. If the module is already
61 * stopped then this must be a noop. If the HAL is already stopped or it
62 * succeeds then onStop must be called. If the teardown fails onFailure must
63 * be called. After calling this all IWifiChip objects will be considered
64 * invalid.
65 *
66 * Calling stop then start is a valid way of resetting state in the HAL,
67 * driver, firmware.
68 */
69 @exit
70 @callflow(next={"registerEventCallback", "start", "stop"})
71 oneway stop();
72
Mitchell Wills5443a9f2016-08-18 11:44:58 -070073 /**
Roshan Piusadcfba42016-10-05 10:19:06 -070074 * Retrieve the list of all chip Id's on the device.
75 * The corresponding |IWifiChip| object for any chip can be
76 * retrieved using |getChip| method.
77 *
78 * @return chipIds List of all chip Id's on the device.
Mitchell Wills5443a9f2016-08-18 11:44:58 -070079 */
80 @callflow(next={"*"})
Roshan Piusadcfba42016-10-05 10:19:06 -070081 getChipIds() generates (vec<ChipId> chipIds);
82
83 /**
84 * Gets a HIDL interface object for the chip corresponding to the
85 * provided chipId.
86 *
87 * @return chip HIDL interface object representing the chip.
88 */
89 @callflow(next={"*"})
90 getChip(ChipId chipId) generates (IWifiChip chip);
Mitchell Wills5443a9f2016-08-18 11:44:58 -070091};