OSDN Git Service

android-x86/external-bluetooth-bluez.git
10 years agoandroid/daemon: Fix not reporting scan mode to Java
Andrei Emeltchenko [Thu, 31 Oct 2013 12:42:35 +0000 (14:42 +0200)]
android/daemon: Fix not reporting scan mode to Java

After set_adapter_property() higher layer expects callback to be returned
even if property is not changes. Otherwise Java timeouts and reset Bluetooth
enetring to the loop.
...
BluetoothAdapterState( 2850): Timeout will setting scan mode..
  Continuing with disable...
...

10 years agoandroid/daemon: Fix error setting property
Andrei Emeltchenko [Thu, 31 Oct 2013 11:52:38 +0000 (13:52 +0200)]
android/daemon: Fix error setting property

Do not return error setting property which is already set. This fixes
bug with set_scan_mode which might return HAL_STATUS_DONE.

10 years agoandroid/hid: Add handling of HAL_EV_HID_CONN_STATE
Luiz Augusto von Dentz [Thu, 31 Oct 2013 12:19:48 +0000 (14:19 +0200)]
android/hid: Add handling of HAL_EV_HID_CONN_STATE

This patches generate proper events when the connection state changes:

>hidhost connect
BlueZ D: android/hal-hidhost.c:hh_connect()
connection_state_cb: bd_addr= connection_state=BTHH_CONN_STATE_CONNECTING
if_hh->connect: BT_STATUS_SUCCESS
connection_state_cb: bd_addr= connection_state=BTHH_CONN_STATE_CONNECTED
>hidhost disconnect
BlueZ D: android/hal-hidhost.c:hh_disconnect()
connection_state_cb: bd_addr= connection_state=BTHH_CONN_STATE_DISCONNECTING
if_hh->disconnect: BT_STATUS_SUCCESS
connection_state_cb: bd_addr= connection_state=BTHH_CONN_STATE_DISCONNECTED

10 years agoandroid/hal-hidhost: Add implementation of .connection_state_cb
Luiz Augusto von Dentz [Thu, 31 Oct 2013 12:19:47 +0000 (14:19 +0200)]
android/hal-hidhost: Add implementation of .connection_state_cb

10 years agoandroid/hid: Add handling of incoming connections
Luiz Augusto von Dentz [Thu, 31 Oct 2013 12:19:46 +0000 (14:19 +0200)]
android/hid: Add handling of incoming connections

10 years agoandroid/client: Fix crash in get_profile_interface
Jerzy Kasenberg [Thu, 31 Oct 2013 10:56:26 +0000 (11:56 +0100)]
android/client: Fix crash in get_profile_interface

This fixes crash due to uncheck input from user.

10 years agoandroid: Add support for handling remove bond command
Szymon Janc [Thu, 31 Oct 2013 10:23:33 +0000 (11:23 +0100)]
android: Add support for handling remove bond command

Bond state change is send when command complete for unpair device is
received and status was success.

10 years agoandroid/hal: Add support for repacking received IPC data to HAL data
Szymon Janc [Wed, 30 Oct 2013 15:30:54 +0000 (16:30 +0100)]
android/hal: Add support for repacking received IPC data to HAL data

Some HAL defined types that are passed as type-len-value in properties
callback needs to be repacked at runtime to match defined types.

This is due to HAL using data types without strict refined sizes like
enums or unpacked structures. This is needed only if data is passed as
TLV. With data passed to callbacks as parameters compiler will handle
types convertion.

Currently only enum types are supported.

10 years agoandroid/haltest: Fix bug when building for Android 4.2.2
Andrei Emeltchenko [Thu, 31 Oct 2013 08:37:20 +0000 (10:37 +0200)]
android/haltest: Fix bug when building for Android 4.2.2

Since I started to use system Android headers instead of local this
bug was found.

10 years agoandroid/haltest: Use Android system headers instead of local
Andrei Emeltchenko [Thu, 31 Oct 2013 08:37:19 +0000 (10:37 +0200)]
android/haltest: Use Android system headers instead of local

10 years agoandroid: Add support for handling SSP reply command
Szymon Janc [Thu, 31 Oct 2013 02:55:54 +0000 (02:55 +0000)]
android: Add support for handling SSP reply command

10 years agoandroid: Add support for handling pin reply command
Szymon Janc [Thu, 31 Oct 2013 02:55:53 +0000 (02:55 +0000)]
android: Add support for handling pin reply command

10 years agoandroid: Add support for notify variant in SSP request event
Szymon Janc [Thu, 31 Oct 2013 02:55:52 +0000 (02:55 +0000)]
android: Add support for notify variant in SSP request event

10 years agoandroid: Add support for entry variant in SSP request event
Szymon Janc [Thu, 31 Oct 2013 02:55:51 +0000 (02:55 +0000)]
android: Add support for entry variant in SSP request event

10 years agoandroid: Add initial support for sending SSP request event
Szymon Janc [Thu, 31 Oct 2013 02:55:50 +0000 (02:55 +0000)]
android: Add initial support for sending SSP request event

Only consent and confirm variants are supported in this patch.

10 years agoandroid: Add support for sending pin code request
Szymon Janc [Thu, 31 Oct 2013 02:55:49 +0000 (02:55 +0000)]
android: Add support for sending pin code request

10 years agoandroid: Add support for handling cancel bond command
Szymon Janc [Thu, 31 Oct 2013 02:55:47 +0000 (02:55 +0000)]
android: Add support for handling cancel bond command

10 years agoandroid: Add support for handling create bond command
Szymon Janc [Thu, 31 Oct 2013 02:55:46 +0000 (02:55 +0000)]
android: Add support for handling create bond command

10 years agoandroid: Set default IO capability on daemon start
Szymon Janc [Thu, 31 Oct 2013 02:55:45 +0000 (02:55 +0000)]
android: Set default IO capability on daemon start

There is no HAL function for setting IO capabilities so this is
hardcoded to DisplayYesNo as Android devices usually have screen
and input.

10 years agoandroid: Make load_link_keys function load keys
Szymon Janc [Thu, 31 Oct 2013 02:55:44 +0000 (02:55 +0000)]
android: Make load_link_keys function load keys

GSlist passed is expected to hold mgmt_link_key_info structures.

10 years agoandroid: Add support for handling new link key mgmt event
Szymon Janc [Thu, 31 Oct 2013 02:55:43 +0000 (02:55 +0000)]
android: Add support for handling new link key mgmt event

When link key is emitted by kernel bond state change notification is
send to HAL. Storing link key is not yet implemented.

10 years agoandroid: Add missing bond state definition to IPC header
Szymon Janc [Thu, 31 Oct 2013 02:55:42 +0000 (02:55 +0000)]
android: Add missing bond state definition to IPC header

10 years agoandroid: Add missing bonding state definitions to IPC specification
Szymon Janc [Thu, 31 Oct 2013 02:55:41 +0000 (02:55 +0000)]
android: Add missing bonding state definitions to IPC specification

10 years agoandroid: Use Android headers instead of local ones
Andrei Emeltchenko [Wed, 30 Oct 2013 15:51:24 +0000 (17:51 +0200)]
android: Use Android headers instead of local ones

Add path to Android libhardware library headers

10 years agoandroid: Initial implementation of socket interface
Marcin Kraglak [Wed, 30 Oct 2013 15:16:33 +0000 (16:16 +0100)]
android: Initial implementation of socket interface

Add stub implementation of socket interace on daemon side.

10 years agoandroid/hal: Add initial socket implementation
Marcin Kraglak [Wed, 30 Oct 2013 15:16:32 +0000 (16:16 +0100)]
android/hal: Add initial socket implementation

Added socket api opcodes and structures and its implementation
in hal-sock.c.

10 years agoandroid/client: Define Android version for host
Jerzy Kasenberg [Wed, 30 Oct 2013 14:47:22 +0000 (15:47 +0100)]
android/client: Define Android version for host

This patch defines PLATFORM_SDK_VERSION like it is handled in
Android.mk. This value corresponds to current copy of headers
from Android committed to bluez.

10 years agoandroid/hid: Fix not cleanup properly after disconnect
Luiz Augusto von Dentz [Wed, 30 Oct 2013 14:24:54 +0000 (16:24 +0200)]
android/hid: Fix not cleanup properly after disconnect

If the device is disconnected it should be removed from the list of
connected devices and free its data.

10 years agoandroid: Fix compiler flags with Android version
Jerzy Kasenberg [Wed, 30 Oct 2013 14:22:38 +0000 (15:22 +0100)]
android: Fix compiler flags with Android version

This fixes commit that removed PLATFORM_SDK_VERSION when building
haltest. Now all android targets get this define.

10 years agotools/mgmt-tester: Rename 'LE-only' to 'LE' for nicer logs
Johan Hedberg [Wed, 30 Oct 2013 14:12:32 +0000 (16:12 +0200)]
tools/mgmt-tester: Rename 'LE-only' to 'LE' for nicer logs

10 years agotools/mgmt-tester: Add LE test for set_connectable when limited discoverable
Johan Hedberg [Wed, 30 Oct 2013 13:53:41 +0000 (15:53 +0200)]
tools/mgmt-tester: Add LE test for set_connectable when limited discoverable

We also need to update the order of the initial settings since limited
discoverable is only allowed when powered on.

10 years agotools/mgmt-tester: Add LE test for connectable off when discoverable
Johan Hedberg [Wed, 30 Oct 2013 13:44:19 +0000 (15:44 +0200)]
tools/mgmt-tester: Add LE test for connectable off when discoverable

10 years agotools/mgmt-tester: Add basic LE-only discoverable on test case
Johan Hedberg [Wed, 30 Oct 2013 13:33:56 +0000 (15:33 +0200)]
tools/mgmt-tester: Add basic LE-only discoverable on test case

10 years agotools/mgmt-tester: Add basic LE-only limited discoverable on test case
Johan Hedberg [Wed, 30 Oct 2013 13:26:06 +0000 (15:26 +0200)]
tools/mgmt-tester: Add basic LE-only limited discoverable on test case

10 years agotools/mgmt-tester: Add basic BR/EDR limited discoverable on test cases
Johan Hedberg [Wed, 30 Oct 2013 13:10:04 +0000 (15:10 +0200)]
tools/mgmt-tester: Add basic BR/EDR limited discoverable on test cases

10 years agotools/mgmt-tester: Fix sending right set_discoverable parameters in setup
Johan Hedberg [Wed, 30 Oct 2013 12:47:46 +0000 (14:47 +0200)]
tools/mgmt-tester: Fix sending right set_discoverable parameters in setup

10 years agotools/mgmt-tester: Fix calling test_setup twice
Johan Hedberg [Wed, 30 Oct 2013 12:43:47 +0000 (14:43 +0200)]
tools/mgmt-tester: Fix calling test_setup twice

10 years agoandroid: Add missing discovery state definitions to IPC header
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:32 +0000 (11:00 +0100)]
android: Add missing discovery state definitions to IPC header

10 years agoandroid/hal: Add device state changed event handler
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:31 +0000 (11:00 +0100)]
android/hal: Add device state changed event handler

This is used to report property change of already reported remote
device.

10 years agoandroid/hal: Add device found event handler
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:30 +0000 (11:00 +0100)]
android/hal: Add device found event handler

This is called when new remote device is found.

10 years agoandroid/hal: Extract bt property repacking code for further reuse
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:29 +0000 (11:00 +0100)]
android/hal: Extract bt property repacking code for further reuse

This extracted part of code can be reused for repacking remote device
properties.

10 years agoandroid/hal: Add support for handling discovery state change event
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:28 +0000 (11:00 +0100)]
android/hal: Add support for handling discovery state change event

10 years agoandroid/hal: Add support for start/cancel device discovery commands
Jakub Tyszkowski [Wed, 30 Oct 2013 10:00:27 +0000 (11:00 +0100)]
android/hal: Add support for start/cancel device discovery commands

10 years agoandroid: Suppress compiler warnings not used in autotools build
Szymon Janc [Tue, 29 Oct 2013 15:23:38 +0000 (16:23 +0100)]
android: Suppress compiler warnings not used in autotools build

Android build system is enabling some additional warnings that are not
enabled when building with autotools. This avoids spurious warnings
while building on Android.

10 years agoandroid: Add common place for adding compiler flags in Android.mk
Szymon Janc [Tue, 29 Oct 2013 15:23:37 +0000 (16:23 +0100)]
android: Add common place for adding compiler flags in Android.mk

This will contain CFLAGS common for all BlueZ code.

10 years agoandroid/client: Fix crash in tab completion
Jerzy Kasenberg [Wed, 30 Oct 2013 09:31:12 +0000 (10:31 +0100)]
android/client: Fix crash in tab completion

When user pressed tab on third or later argument when
first two did not make sense tool crashed.
Now method is checked for NULL before accessing help field.

10 years agoandroid: Add README file with instructions
Szymon Janc [Wed, 30 Oct 2013 09:05:16 +0000 (10:05 +0100)]
android: Add README file with instructions

This file cotains help on how BlueZ for Android should be build, run
and test. Some hints and examples on how BlueZ can be intergrated into
Android are present as well.

10 years agoaudio/AVRCP: Always assign a player to TG role
Luiz Augusto von Dentz [Tue, 29 Oct 2013 14:07:14 +0000 (16:07 +0200)]
audio/AVRCP: Always assign a player to TG role

Currently the code does not assign a player if version is bellow 1.3,
but sometimes the version may not be initialized correctly e.g: record
could not be fetch.

Futhermore by assigning a player for 1.0 CT it won't break backward
compatibility as no commands will be sent but adds the possibility to
respond properly in case the CT is sending commands above its own
version which is a violation of the spec but unfortunately there exists
such stacks on the market.

10 years agoandroid/hal: Add support for handling SSP request event
Szymon Janc [Tue, 29 Oct 2013 12:49:05 +0000 (13:49 +0100)]
android/hal: Add support for handling SSP request event

10 years agoandroid/hal: Add support for handling pin request event
Szymon Janc [Tue, 29 Oct 2013 12:49:04 +0000 (13:49 +0100)]
android/hal: Add support for handling pin request event

10 years agoandroid: Fix build errors
Andrei Emeltchenko [Tue, 29 Oct 2013 12:48:41 +0000 (14:48 +0200)]
android: Fix build errors

The patch fixes following issues when building:

Make links to sco.h and rfcomm.h needed for Android sockets.
...
btio.c:39:30: fatal error: bluetooth/rfcomm.h: No such file or directory
compilation terminated.
...
btio.c:40:27: fatal error: bluetooth/sco.h: No such file or directory
compilation terminated.
...

10 years agoandroid/hal: Add support for handling bond state change event
Szymon Janc [Tue, 29 Oct 2013 11:52:40 +0000 (12:52 +0100)]
android/hal: Add support for handling bond state change event

10 years agoandroid: Update IPC headers to match SSP and PIN requests events
Szymon Janc [Tue, 29 Oct 2013 11:52:39 +0000 (12:52 +0100)]
android: Update IPC headers to match SSP and PIN requests events

Name should be 249 bytes so it is always NULL terminated string.
Class of device is send as uint32. This will allow to make simple
passing of data in HAL library without need of copying data.

10 years agoandroid: Define class of device as four bytes in IPC doc
Szymon Janc [Tue, 29 Oct 2013 11:52:38 +0000 (12:52 +0100)]
android: Define class of device as four bytes in IPC doc

For PIN and SSP requests callback define CoD as 4 bytes. This will
allow HAL library to pass CoD direclty to callback. Will also match
how CoD is passed as property.

10 years agobuild: Move Makefile.android to android/Makefile.am
Szymon Janc [Mon, 28 Oct 2013 16:37:06 +0000 (17:37 +0100)]
build: Move Makefile.android to android/Makefile.am

This will keep all Android related changes within android directory.

10 years agoandroid/hal: Set callbacks before initializing IPC
Szymon Janc [Mon, 28 Oct 2013 15:45:37 +0000 (16:45 +0100)]
android/hal: Set callbacks before initializing IPC

Notification thread is started on IPC init and it can be scheduled
before main thread.

Fix following crash on HAL init:

pid: 3392, tid: 3492, name: droid.bluetooth  >>> com.android.bluetooth <<<
signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000028
    eax 00000000  ebx ce047f64  ecx ce0405d0  edx f7763724
    esi cdf3af00  edi f837fb90
    xcs 00000023  xds 0000002b  xes 0000002b  xfs 00000000  xss 0000002b
    eip ce042289  ebp cdf3a9f8  esp cdf3a9e0  flags 00010292

backtrace:
    #00  pc 00003289  /system/lib/hw/bluetooth.default.so (bt_thread_associate+25)
    #01  pc 000015f8  /system/lib/hw/bluetooth.default.so (notification_handler+40)
    #02  pc 0000f804  /system/lib/libc.so (__thread_entry+276)
    #03  pc 0002999d  /system/lib/libc.so
    #04  pc 00082ae7  /system/lib/libdvm.so (dvmThreadSelf()+39)
    #05  pc 00010db9  /system/lib/libc.so (pthread_mutex_unlock+25)

10 years agoandroid: Add initial HID disconnect implementation.
Ravi kumar Veeramally [Tue, 29 Oct 2013 09:48:16 +0000 (11:48 +0200)]
android: Add initial HID disconnect implementation.

Implemented basic HID disconnect method. Host disconnects
with bt device at L2CAP level.

10 years agoandroid: Add initial HID connect implementation
Ravi kumar Veeramally [Tue, 29 Oct 2013 09:48:15 +0000 (11:48 +0200)]
android: Add initial HID connect implementation

Implemented basic HID connect method. Host connects to
bt device at L2CAP level.

10 years agoandroid: Use helper function to convert bdaddr to android format
Szymon Janc [Mon, 28 Oct 2013 13:45:14 +0000 (14:45 +0100)]
android: Use helper function to convert bdaddr to android format

This will make easier to understand why swap is needed.

10 years agoandroid: Add helper functions for converting bdaddr transmitted over IPC
Szymon Janc [Mon, 28 Oct 2013 13:45:13 +0000 (14:45 +0100)]
android: Add helper functions for converting bdaddr transmitted over IPC

Android holds Bluetooth address in reverse order comparing to
bluetoothd. Add convenient functions for converting to and from that
format.

Convertion will done on daemon side to keep HAL library simple.

10 years agoandroid: Remove bogus hal_rsp_register_module structure
Szymon Janc [Mon, 28 Oct 2013 12:46:15 +0000 (13:46 +0100)]
android: Remove bogus hal_rsp_register_module structure

Core service Register ID command doesn't return any parameter.

10 years agoandroid: Fix HAL_OP_REMOVE_BOND value
Szymon Janc [Mon, 28 Oct 2013 12:46:14 +0000 (13:46 +0100)]
android: Fix HAL_OP_REMOVE_BOND value

This is a copy-and-paste mistake.

10 years agoandroid: Rename send_adapter_name to send_adapter_address
Szymon Janc [Mon, 28 Oct 2013 12:46:12 +0000 (13:46 +0100)]
android: Rename send_adapter_name to send_adapter_address

Make function name match what it acctually does.

10 years agoandroid/client: Add clear screen on Cltr-L
Jerzy Kasenberg [Mon, 28 Oct 2013 12:48:13 +0000 (13:48 +0100)]
android/client: Add clear screen on Cltr-L

This patch allows to clear screen on Ctrl-L.

10 years agoandroid/hal-pan: Add implementation of .disconnect
Luiz Augusto von Dentz [Mon, 28 Oct 2013 12:09:06 +0000 (14:09 +0200)]
android/hal-pan: Add implementation of .disconnect

10 years agoandroid/hal-pan: Add implementation of .connect
Luiz Augusto von Dentz [Mon, 28 Oct 2013 12:09:05 +0000 (14:09 +0200)]
android/hal-pan: Add implementation of .connect

10 years agoandroid/hal-pan: Add implementation of .get_local_role
Luiz Augusto von Dentz [Mon, 28 Oct 2013 12:09:04 +0000 (14:09 +0200)]
android/hal-pan: Add implementation of .get_local_role

10 years agoandroid/hal-pan: Add implementation of .enable
Luiz Augusto von Dentz [Mon, 28 Oct 2013 12:09:03 +0000 (14:09 +0200)]
android/hal-pan: Add implementation of .enable

10 years agoandroid/hal-pan: Add implementation of .init
Luiz Augusto von Dentz [Mon, 28 Oct 2013 12:09:02 +0000 (14:09 +0200)]
android/hal-pan: Add implementation of .init

10 years agoandroid/client: Add completion for hf methods
Jerzy Kasenberg [Mon, 28 Oct 2013 11:39:03 +0000 (12:39 +0100)]
android/client: Add completion for hf methods

This patch adds completion functions to handsfree methods.

10 years agoandroid/client: Add code for handsfree methods
Jerzy Kasenberg [Mon, 28 Oct 2013 11:39:02 +0000 (12:39 +0100)]
android/client: Add code for handsfree methods

This patch adds implementation of handsfree methods to haltest.

10 years agoandroid/client: Add code for handsfree callbacks
Jerzy Kasenberg [Mon, 28 Oct 2013 11:39:01 +0000 (12:39 +0100)]
android/client: Add code for handsfree callbacks

This adds implementation for handsfree callbacks.

10 years agoandroid/client: Add skeleton for handsfree calls
Jerzy Kasenberg [Mon, 28 Oct 2013 11:39:00 +0000 (12:39 +0100)]
android/client: Add skeleton for handsfree calls

This patch adds skeleton for all methods of handsfree along with
all callbacks.

10 years agoandroid/hal-av: Fix command struct names
Luiz Augusto von Dentz [Mon, 28 Oct 2013 10:58:56 +0000 (12:58 +0200)]
android/hal-av: Fix command struct names

The command struct names should start with hal_cmd as the others.

10 years agoandroid/hal: Add support for send av disconnect command
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:07 +0000 (17:52 +0200)]
android/hal: Add support for send av disconnect command

This allows HAL to send av disconnect command

10 years agoandroid/hal: Add support for send av connect command
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:06 +0000 (17:52 +0200)]
android/hal: Add support for send av connect command

This allows HAL to send av connect command

10 years agoandroid/hal: Add support for handling av audio state event
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:05 +0000 (17:52 +0200)]
android/hal: Add support for handling av audio state event

10 years agoandroid/hal: Add support for handling av connection state event
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:04 +0000 (17:52 +0200)]
android/hal: Add support for handling av connection state event

10 years agoandroid/hal: Add skeleton for handling av notifications
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:03 +0000 (17:52 +0200)]
android/hal: Add skeleton for handling av notifications

Only default case is handled in skeleton

10 years agoandroid/hal: Fix typo in A2DP HAL service name
Grzegorz Kolodziejczyk [Fri, 25 Oct 2013 15:52:02 +0000 (17:52 +0200)]
android/hal: Fix typo in A2DP HAL service name

A2DP was misspelled as AD2P

10 years agoandroid: Rename setting_powered_changed to powered_changed
Luiz Augusto von Dentz [Sun, 27 Oct 2013 11:57:11 +0000 (13:57 +0200)]
android: Rename setting_powered_changed to powered_changed

10 years agoandroid: Add support for notifying HAL about scan mode change
Szymon Janc [Fri, 25 Oct 2013 15:15:03 +0000 (17:15 +0200)]
android: Add support for notifying HAL about scan mode change

If connectable or discoverable setting changes property change is send
to HAL.

10 years agoandroid: Always set adapter to pairable on init
Szymon Janc [Fri, 25 Oct 2013 15:15:02 +0000 (17:15 +0200)]
android: Always set adapter to pairable on init

There is no operation to enable/disable pairable mode in Android HAL.

10 years agoandroid: Add support for setting adapter scan mode
Szymon Janc [Fri, 25 Oct 2013 15:15:01 +0000 (17:15 +0200)]
android: Add support for setting adapter scan mode

This allows to set all modes defined: none, connectable and
'connectable and discoverable'.

10 years agoandroid: Add missing scan mode difinitions to IPC header
Szymon Janc [Fri, 25 Oct 2013 15:15:00 +0000 (17:15 +0200)]
android: Add missing scan mode difinitions to IPC header

10 years agoandroid: Add initial code for handling adapter set property command
Szymon Janc [Fri, 25 Oct 2013 15:14:59 +0000 (17:14 +0200)]
android: Add initial code for handling adapter set property command

No commands are handled yet.

10 years agoandroid: Use common exit path for commands in bt_adapter_handle_cmd
Szymon Janc [Fri, 25 Oct 2013 15:14:58 +0000 (17:14 +0200)]
android: Use common exit path for commands in bt_adapter_handle_cmd

All adapter commands return no parameters so putting error and success
response on common exit path. This will make function easier to follow
when more commands support will be added.

10 years agoandroid/hal: Use debug helpers from hal client
Andrei Emeltchenko [Fri, 25 Oct 2013 13:28:46 +0000 (16:28 +0300)]
android/hal: Use debug helpers from hal client

Debug helpers really helps a lot when debugging on Android target. The
patch uses helper functions already defined for hal test tool so
we do not need to reimplement them.

10 years agoandroid/hal: Use defined function to check that interface is ready
Andrei Emeltchenko [Fri, 25 Oct 2013 13:28:45 +0000 (16:28 +0300)]
android/hal: Use defined function to check that interface is ready

10 years agoandroid/hal: Associate thread to Java
Andrei Emeltchenko [Fri, 25 Oct 2013 11:34:46 +0000 (14:34 +0300)]
android/hal: Associate thread to Java

Without thread assiciation callbacks are not received by Java.
They are blocked by JNI:
E/BluetoothServiceJni( 2844): Callback env check fail: env: 0x0, callback: 0x0
E/BluetoothServiceJni( 2844): Callback: 'adapter_state_change_callback' is not
called on the correct thread

10 years agoandroid: Rename ipc_send_error to ipc_send_rsp
Luiz Augusto von Dentz [Fri, 25 Oct 2013 12:22:24 +0000 (15:22 +0300)]
android: Rename ipc_send_error to ipc_send_rsp

10 years agoandroid: Rename ERROR enum and command to STATUS
Luiz Augusto von Dentz [Fri, 25 Oct 2013 12:13:48 +0000 (15:13 +0300)]
android: Rename ERROR enum and command to STATUS

This is more consistent with HAL interface which does name the enum as
bt_status_t and does use BT_STATUS prefix.

10 years agoandroid: Add initial support for handling adapter get property command
Szymon Janc [Fri, 25 Oct 2013 10:50:11 +0000 (12:50 +0200)]
android: Add initial support for handling adapter get property command

Support for HAL_BT_PROP_BDADDR property only.

10 years agoandroid: Add missing success status definition to IPC header
Szymon Janc [Fri, 25 Oct 2013 10:50:10 +0000 (12:50 +0200)]
android: Add missing success status definition to IPC header

This is used in HAL callbacks to indicate success.

10 years agoandroid/hal: Add support for handling adapter properties change event
Szymon Janc [Fri, 25 Oct 2013 10:50:09 +0000 (12:50 +0200)]
android/hal: Add support for handling adapter properties change event

10 years agoandroid/hal: Add support for sending adapter SSP reply command
Szymon Janc [Fri, 25 Oct 2013 10:50:08 +0000 (12:50 +0200)]
android/hal: Add support for sending adapter SSP reply command

This allows HAL to reply to SSP request.

10 years agoandroid: Add missing SSP variant definitions to IPC header
Szymon Janc [Fri, 25 Oct 2013 10:50:07 +0000 (12:50 +0200)]
android: Add missing SSP variant definitions to IPC header

10 years agoandroid: Add missing SSP Variant definitions to IPC document
Szymon Janc [Fri, 25 Oct 2013 10:50:06 +0000 (12:50 +0200)]
android: Add missing SSP Variant definitions to IPC document

Those are used to specify SSP association model.

10 years agoandroid/hal: Add support for sending adapter PIN reply command
Szymon Janc [Fri, 25 Oct 2013 10:50:05 +0000 (12:50 +0200)]
android/hal: Add support for sending adapter PIN reply command

This allows HAL to reply to PIN code request.

10 years agoandroid/hal: Add support for sending adapter remove bond command
Szymon Janc [Fri, 25 Oct 2013 10:50:04 +0000 (12:50 +0200)]
android/hal: Add support for sending adapter remove bond command

This allows HAL to remove bonding.