blob: 10cf914bc17578c8c0d9be4ebeb6ba4cf0994ceb [file] [log] [blame]
Myles Watsonacfbd252016-09-12 10:58:42 -07001/*
2 * Copyright (C) 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.bluetooth@1.0;
18
19import IBluetoothHciCallbacks;
20
21/*
22 * The Host Controller Interface (HCI) is the layer defined by the Bluetooth
23 * specification between the software that runs on the host and the Bluetooth
24 * controller chip. This boundary is the natural choice for a Hardware
25 * Abstraction Layer (HAL). Dealing only in HCI packets and events simplifies
26 * the stack and abstracts away power management, initialization, and other
27 * implementation-specific details related to the hardware.
28 */
29
30interface IBluetoothHci {
31 /**
32 * Initialize the underlying HCI interface.
33 *
34 * This method should be used to initialize any hardware interfaces
35 * required to communicate with the Bluetooth hardware in the
36 * device.
37 *
38 * @param callback implements IBluetoothHciCallbacks which will
39 * receive callbacks when incoming HCI packets are received
40 * from the controller to be sent to the host.
41 * @return status result of the initialization
42 */
43 initialize(IBluetoothHciCallbacks callback) generates (Status status);
44
45 /**
46 * Send an HCI command (as specified in the Bluetooth Specification
47 * V4.2, Vol 2, Part 5, Section 5.4.1) to the Bluetooth controller.
48 * Commands must be executed in order.
49 *
50 * @param command is the HCI command to be sent
51 */
52 sendHciCommand(HciPacket command);
53
54 /**
55 * Send an HCI ACL data packet (as specified in the Bluetooth Specification
56 * V4.2, Vol 2, Part 5, Section 5.4.2) to the Bluetooth controller.
57 * Packets must be processed in order.
58 * @param data HCI data packet to be sent
59 */
60 sendAclData(HciPacket data);
61
62 /**
63 * Send an SCO data packet (as specified in the Bluetooth Specification
64 * V4.2, Vol 2, Part 5, Section 5.4.3) to the Bluetooth controller.
65 * Packets must be processed in order.
66 * @param data HCI data packet to be sent
67 */
68 sendScoData(HciPacket data);
69
70 /**
71 * Close the HCI interface
72 */
73 close();
74};