diff options
author | Wei Wang <wvw@google.com> | 2020-03-04 11:44:58 -0800 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-09-05 19:30:35 +0800 |
commit | 2087fa76c0dad7b090db931c2d28186efe2c6c29 (patch) | |
tree | d39b57b05ee351710dd615cc09278c3842de9711 | |
parent | c4c9de4196291c9867e0be9e34874f664ce113d9 (diff) |
Probe PowerHAL HIDL first
Right now AIDL doesn't provide an API for vendor code to query if the
AIDL HAL declared. This will lead to 1) long blocking call for device
doesn't have the AIDL HAL and also 2) potential problem if the service
starts late after 5s timeout.
This is a workaround for addressing 1) on devices having HIDL, but still
affects device that doesn't have HIDL service.
Bug: 149797408
Test: build
Change-Id: I60aada1ab1a044db965987bca5f6eee5b6262b20
-rw-r--r-- | hal/audio_perf.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/hal/audio_perf.cpp b/hal/audio_perf.cpp index 4623f192..e2620a1b 100644 --- a/hal/audio_perf.cpp +++ b/hal/audio_perf.cpp @@ -54,6 +54,21 @@ static hal_version connectPowerHalLocked() { return NONE; } + if (gPowerHalHidlExists) { + // (re)connect if handle is null + if (!gPowerHal_1_2_) { + gPowerHal_1_2_ = + android::hardware::power::V1_2::IPower::getService(); + } + if (gPowerHal_1_2_) { + ALOGI("Successfully connected to Power Hal Hidl service."); + return HIDL_1_2; + } else { + // no more try on this handle + gPowerHalHidlExists = false; + } + } + if (gPowerHalAidlExists) { // (re)connect if handle is null if (!gPowerHal_Aidl_) { @@ -70,21 +85,6 @@ static hal_version connectPowerHalLocked() { } } - if (gPowerHalHidlExists) { - // (re)connect if handle is null - if (!gPowerHal_1_2_) { - gPowerHal_1_2_ = - android::hardware::power::V1_2::IPower::getService(); - } - if (gPowerHal_1_2_) { - ALOGI("Successfully connected to Power Hal Hidl service."); - return HIDL_1_2; - } else { - // no more try on this handle - gPowerHalHidlExists = false; - } - } - return NONE; } |