All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bluez PATCH v2 0/3] adapter: Reconnect audio when resuming from suspend
@ 2020-08-18 23:28 Abhishek Pandit-Subedi
  2020-08-18 23:28 ` [Bluez PATCH v2 1/3] mgmt: Add controller suspend and resume events Abhishek Pandit-Subedi
                   ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Abhishek Pandit-Subedi @ 2020-08-18 23:28 UTC (permalink / raw)
  To: luiz.dentz, marcel
  Cc: chromeos-bluetooth-upstreaming, linux-bluetooth, Abhishek Pandit-Subedi


Hi Luiz and Marcel,

This is a quality of life improvement for the behavior of audio devices
during system suspend. This depends on a kernel change that emits
suspend/resume events:

https://patchwork.kernel.org/project/bluetooth/list/?series=325771

Right now, audio devices will be disconnected as part of suspend but
won't be reconnected when the system resumes without user interaction.
This is annoying to some users as it causes an interruption to their
normal work flow.

This change reconnects audio devices that were disconnected for suspend
using the following logic:

 * Register a callback for controller resume in the policy plugin.
 * In the device disconnect callback, mark any devices with the A2DP
   service uuid for reconnect on resume after a delay.
 * In the controller resume callback, queue any policy items that are
   marked to reconnect on resume for connection with the
   ReconnectAudioDelay value (default = 5s for Wi-Fi coexistence).

A reconnect is only attempted once after the controller resumes and the
delay between resume and reconnect is configurable via the
ReconnectAudioDelay key in the Policy settings. The 5s delay was chosen
arbitrarily and I think anywhere up to 10s is probably ok. A longer
delay is better to account for spurious wakeups and Wi-Fi reconnection
time (avoiding any co-ex issues) at the downside of reconnection speed.

Here are the tests I have done with this:
- Single suspend and verified the headphones reconnect
- Suspend stress test for 25 iterations and verify both Wi-Fi and
  Bluetooth audio reconnect on resume. (Ran with wake minimum time of
  10s)
- Suspend test with wake time < 5s to verify that BT reconnect isn't
  attempted. Ran 5 iterations with low wake time and then let it stay
  awake to confirm reconnect finally completed after 5s+ wake time.
- Suspend test with wake time between 3s - 6s. Ran with 5 iterations and
  verified it wasn't connected at the end. A connection attempt was
  made but not completed due to suspend. A reconnect attempt was not
  made afterwards, which is by design.

  Luiz@ Marcel@: Does this sound ok (give up after an attempt)?

I've tested this on a Pixelbook Go (AC-9260 controller) and HP
Chromebook 14a (RTL8822CE controller) with GID6B headset.

I've also tested this with the Pixel Buds 2. These earbuds actually
reconnect automatically to the Chromebook (even without this policy
change) and I verified that the new changes don't break the reconnection
mechanism.

Thanks
Abhishek


Changes in v2:
- Refactored to use policy instead of connecting directly in adapter

Abhishek Pandit-Subedi (3):
  mgmt: Add controller suspend and resume events
  monitor: Add btmon support for Suspend and Resume events
  policy: Reconnect audio on controller resume

 lib/mgmt.h       | 14 +++++++++++
 monitor/packet.c | 55 +++++++++++++++++++++++++++++++++++++++++
 plugins/policy.c | 64 +++++++++++++++++++++++++++++++++++++++++++++---
 src/adapter.c    | 45 ++++++++++++++++++++++++++++++++++
 src/adapter.h    |  6 +++++
 src/main.c       |  1 +
 src/main.conf    |  9 +++++++
 7 files changed, 190 insertions(+), 4 deletions(-)

-- 
2.28.0.297.g1956fa8f8d-goog


^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2020-08-28 23:41 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-18 23:28 [Bluez PATCH v2 0/3] adapter: Reconnect audio when resuming from suspend Abhishek Pandit-Subedi
2020-08-18 23:28 ` [Bluez PATCH v2 1/3] mgmt: Add controller suspend and resume events Abhishek Pandit-Subedi
2020-08-18 23:28 ` [Bluez PATCH v2 2/3] monitor: Add btmon support for Suspend and Resume events Abhishek Pandit-Subedi
2020-08-18 23:28 ` [Bluez PATCH v2 3/3] policy: Reconnect audio on controller resume Abhishek Pandit-Subedi
2020-08-27  6:32   ` Luiz Augusto von Dentz
2020-08-27 21:08     ` Abhishek Pandit-Subedi
2020-08-28 17:08       ` Luiz Augusto von Dentz
2020-08-28 17:31         ` Abhishek Pandit-Subedi
2020-08-28 17:56           ` Luiz Augusto von Dentz
2020-08-28 23:40             ` Abhishek Pandit-Subedi
2020-08-26 17:41 ` [Bluez PATCH v2 0/3] adapter: Reconnect audio when resuming from suspend Abhishek Pandit-Subedi
2020-08-27  6:20   ` Luiz Augusto von Dentz
2020-08-27 21:13     ` Abhishek Pandit-Subedi
2020-08-27 21:18       ` Abhishek Pandit-Subedi
2020-08-28 17:22       ` Luiz Augusto von Dentz
2020-08-28 17:38         ` Abhishek Pandit-Subedi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.